Age | Commit message (Collapse) | Author | |
---|---|---|---|
2013-09-03 | fix non-asm dlfcn setup code | Alon Zakai | |
2013-09-03 | use a separate stack in each asm module; fixes asm2g.test_dlfcn_stack_forward | Alon Zakai | |
2013-09-03 | added test_dlfcn_stack_forward | Anthony Pesch | |
2013-09-03 | added dlopen test to test function pointers with signatures not found in the ↵ | Anthony Pesch | |
main module | |||
2013-09-03 | fix asm validation of side modules | Alon Zakai | |
2013-09-03 | fix test_dlfcn_self | Alon Zakai | |
2013-09-03 | update test_dlfcn_varargs | Alon Zakai | |
2013-09-03 | update test_dlfcn_varargs | Alon Zakai | |
2013-09-03 | update test_dlfcn_alias | Alon Zakai | |
2013-09-03 | update test_dlfcn_data_and_fptr | 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 function table offset for F_BASE_* in shared modules | Alon Zakai | |
2013-09-03 | do not override Runtime methods with asm methods in side modules | Alon Zakai | |
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 | disable ALIASING_FUNCTION_POINTERS for DLOPEN_SUPPORT | Alon Zakai | |
2013-09-03 | comment | Alon Zakai | |
2013-09-03 | refactor test_dlfcn_qsort | Alon Zakai | |
2013-09-03 | refactor dlfcn test code | 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 | disable memory init file in test_dlfcn_basic | Alon Zakai | |
2013-09-03 | enable test_dlfcn_basic for asm modules | 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 | Merge pull request #1543 from juj/configure_debug_logging | Alon Zakai | |
Configure debug logging. | |||
2013-09-03 | disable node stdin fixes due to side effects | Anthony Pesch | |
2013-09-01 | gracefully handle ExitStatus exception in async main loops | Anthony Pesch | |
2013-09-01 | Use EM_BUILD_VERBOSE instead of EMSCRIPTEN_VERBOSE as the name of the env. ↵ | Jukka Jylänki | |
variable that controls whether external configure/build libraries are invoked with logging output to console. | |||
2013-09-01 | misc in.h and SDL joystick stubs | Anthony Pesch | |
2013-08-31 | fix gethostbyname_r types | Alon Zakai | |
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 | |||
2013-08-31 | better error message | Alon Zakai | |
2013-08-30 | don't close client sockets by default in echo server enabling TCP teardown ↵ | Anthony Pesch | |
to succeed | |||
2013-08-30 | disable test_stdin in node (temporarily) and v8 | Alon Zakai | |
2013-08-30 | fix test_emscripten_get_now | Alon Zakai | |
2013-08-30 | fix use of NODE_JS in test_sockets | Alon Zakai | |
2013-08-30 | update package.json to work with older npms | Alon Zakai | |
2013-08-30 | Merge pull request #1557 from inolen/sockfs | Alon Zakai | |
getaddrinfo, freeaddrinfo, getnameinfo support and sockfs | |||
2013-08-30 | Output stdout and stderr from external library builds to console only if ↵ | Jukka Jylänki | |
EMSCRIPTEN_VERBOSE environment variable is defined, to not spam console with information from external tools by default. | |||
2013-08-30 | Remove Building.configure() from storing stdout and stderr output to a temp ↵ | Jukka Jylänki | |
file, since these temp files aren't read from anywhere in emscripten codebase(?). In test suite the temp files are stored to a temp dir, and deleted immediately after the test is run. This prevented test suite from reporting build errors to user when the test fails. Related to #694, #695 and #696. Improve error message reporting at the end of a failed configure run. | |||
2013-08-30 | Remove compilation warnings on msvc10 tests. Add missing --preload-file ↵ | Jukka Jylänki | |
directives to SDL samples when building from msvc10. Removed the 'new' sample from msvc10 build since it is not designed to be built directly. Fixes https://groups.google.com/forum/#!topic/emscripten-discuss/HVavL5SPUrk | |||
2013-08-30 | don't re-use ports between different harnesses | Anthony Pesch | |
2013-08-30 | - moved hostname resolution functions to DNS object | Anthony Pesch | |
- minor whitespace fixes | |||
2013-08-29 | Merge pull request #1311 from juj/emscripten_get_now | Alon Zakai | |
emscripten_get_now enabled for SpiderMonkey, optimization and test. | |||
2013-08-29 | Merge pull request #1555 from inolen/tty_fixes | Alon Zakai | |
added stubs for tcgetattr and tcsetattr, minor node tty fixes | |||
2013-08-29 | Merge pull request #1572 from rharkeadsk/fix-stdio-fileno-constants | Alon Zakai | |
Fix STD*_FILENO constants in JavaScript to match C |