Age | Commit message (Collapse) | Author | |
---|---|---|---|
2013-09-06 | Merge pull request #1598 from juj/informative_oom_message | Alon Zakai | |
Informative oom message | |||
2013-09-06 | improve non-switchification error message | Alon Zakai | |
2013-09-06 | fix inline js in x86 target, enable testing sans validation for inline js in ↵ | Alon Zakai | |
asm.js, fix unistd tests that use inline js to not validate, and make js optimizer more tolerant of inline js in asm code; fixes #1597 | |||
2013-09-05 | Merge pull request #1581 from inolen/rwfile | Alon Zakai | |
added read/writeFile helpers, updated tests to use new FS APIs | |||
2013-09-05 | double simplifications | Alon Zakai | |
2013-09-06 | add long double aliases for a lot of things. | Bruce Mitchener | |
__fpclassify and __signbit are handled in another patch on the libc header replacement branch. | |||
2013-09-06 | When running out of memory and growing heap size is not allowed, actually ↵ | Jukka Jylänki | |
print out what the current value of TOTAL_MEMORY was the application was built with, to help estimate how much memory might be needed. | |||
2013-09-05 | Merge pull request #1585 from waywardmonkeys/single-quotes-for-cdefine | Alon Zakai | |
Single quotes for cdefine | |||
2013-09-05 | Merge pull request #1592 from waywardmonkeys/additional-clock-gettime-precision | Alon Zakai | |
Additional clock_gettime precision | |||
2013-09-04 | Merge pull request #1587 from inolen/openal_buffers_revert | Alon Zakai | |
revert pr #1493 | |||
2013-09-05 | Improve precision of clock_gettime(). Update clock_getres(). | Bruce Mitchener | |
2013-09-04 | restore ZTVN10 hacks, but only for non-ta2 where we do not link in libcxxabi | Alon Zakai | |
2013-09-04 | Merge pull request #1582 from waywardmonkeys/simplify-timezone | Alon Zakai | |
Simplify timezone | |||
2013-09-04 | longjmp test across asm modules | Alon Zakai | |
2013-09-04 | remove no longer needed library.js constants for some libcxxabi stuff, which ↵ | Alon Zakai | |
can confuse INCLUDE_FULL_LIBRARY+exceptions | |||
2013-09-04 | do not emit externals in side modules | Alon Zakai | |
2013-09-04 | handle glBufferData usages that are not in WebGL; fixes #1589 | Alon Zakai | |
2013-09-04 | fix repeated calls to glDraw* where the count changes but not the client ↵ | Alon Zakai | |
attributes; fixes part of #1589 | |||
2013-09-04 | rearranged FS function order | Anthony Pesch | |
2013-09-04 | Revert "reimplement getCurrentTime" | Anthony Pesch | |
This reverts commit bd615f6f4499cc2b928c5603ba98d6bd689e608e. | |||
2013-09-04 | Single quotes for cDefine. | Bruce Mitchener | |
2013-09-04 | Simplify some timezone code. | Bruce Mitchener | |
Since we only allow GMT as a timezone and ignore what the browser says, we can simplify a lot of this code. | |||
2013-09-03 | - added readFile and writeFile helpers | Anthony Pesch | |
- added default modes to mkdir / mkdev | |||
2013-09-03 | add extCall_* methods in asm dlopen support, parallel to invoke in that they ↵ | Alon Zakai | |
are able to access other modules, but do not catch exceptions | |||
2013-09-03 | abort with error message if dlopen called in asm.js mode without DLOPEN_SUPPORT | Alon Zakai | |
2013-09-03 | refactor dlfcn support into DLFCN | Alon Zakai | |
2013-09-03 | add some long double libc stubs | Alon Zakai | |
2013-09-03 | free H_BASE on cleanup | Anthony Pesch | |
2013-09-03 | do not eliminate supposedly stub functions in side modules, as they may be ↵ | Alon Zakai | |
imported from the parent | |||
2013-09-03 | do no run cleanups on dlclose of self | Alon Zakai | |
2013-09-03 | typo fix, index is in arguments[0] | Anthony Pesch | |
2013-09-03 | fix cleanup code to not happen in main module | Alon Zakai | |
2013-09-03 | clean up shared modules when dlclose()d | Alon Zakai | |
2013-09-03 | do not require LINKABLE in DLOPEN_SUPPORT | Alon Zakai | |
2013-09-03 | move neededTables assignment to right place; fixes test_dlfcn_unique_sig | Alon Zakai | |
2013-09-03 | use a separate stack in each asm module; fixes asm2g.test_dlfcn_stack_forward | Alon Zakai | |
2013-09-03 | support function pointer calls across asm modules by passing them all ↵ | Alon Zakai | |
through invoke (for now), and have a global function table in the Runtime, which modules register their functions to | |||
2013-09-03 | use addFunction in dlsym, and define F_BASE in side modules so they can run ↵ | Alon Zakai | |
as shared libs | |||
2013-09-03 | comment | Alon Zakai | |
2013-09-03 | emit side module memory initializer in the right place; test_dlfcn_basic ↵ | Alon Zakai | |
works in asm | |||
2013-09-03 | forward parent Module to side module | Alon Zakai | |
2013-09-03 | do not emit static allocations in side modules | Alon Zakai | |
2013-09-03 | track maximum function index when using dlopen support | Alon Zakai | |
2013-09-03 | Merge pull request #1576 from inolen/misc_stubs | Alon Zakai | |
misc stubs for in.h and sdl.h | |||
2013-09-03 | disable node stdin fixes due to side effects | Anthony Pesch | |
2013-09-01 | misc in.h and SDL joystick stubs | Anthony Pesch | |
2013-08-31 | Merge pull request #1575 from inolen/accept_fixes | Alon Zakai | |
accept fixes | |||
2013-08-31 | remove temporary enet fix, and define gethostbyname_r in a header, so that ↵ | Alon Zakai | |
we can be sure at compilation time that it is used in the way it is expected to be (that function has more than one possible signature in various unixes) | |||
2013-08-31 | - refactored accept code to automatically setup peers for incoming ↵ | Anthony Pesch | |
connections immediately upon connect. previously, this wasn't done until the server called accept, creating a small window of time for peer message events to be lost - renamed send_queue to dgram_send_queue just so its purpose is more clear | |||
2013-08-31 | - temp fix for test_enet | Anthony Pesch | |
- added debugging info to websocket backend |