aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2013-09-03free H_BASE on cleanupAnthony Pesch
2013-09-03do not eliminate supposedly stub functions in side modules, as they may be ↵Alon Zakai
imported from the parent
2013-09-03wip test_dlfcn_mallocsAlon Zakai
2013-09-03remove unneeded settings from DLOPEN_SUPPORTAlon Zakai
2013-09-03do no run cleanups on dlclose of selfAlon Zakai
2013-09-03add test_dlfcn_funcsAlon Zakai
2013-09-03typo fix, index is in arguments[0]Anthony Pesch
2013-09-03fix cleanup code to not happen in main moduleAlon Zakai
2013-09-03clean up shared modules when dlclose()dAlon Zakai
2013-09-03do not require LINKABLE in DLOPEN_SUPPORTAlon Zakai
2013-09-03rename testAlon Zakai
2013-09-03move neededTables assignment to right place; fixes test_dlfcn_unique_sigAlon Zakai
2013-09-03clean up dlfcn testsAlon Zakai
2013-09-03fix test_dlfcn_unique_sig in non-asmAlon Zakai
2013-09-03fix non-asm dlfcn setup codeAlon Zakai
2013-09-03use a separate stack in each asm module; fixes asm2g.test_dlfcn_stack_forwardAlon Zakai
2013-09-03added test_dlfcn_stack_forwardAnthony Pesch
2013-09-03added dlopen test to test function pointers with signatures not found in the ↵Anthony Pesch
main module
2013-09-03fix asm validation of side modulesAlon Zakai
2013-09-03fix test_dlfcn_selfAlon Zakai
2013-09-03update test_dlfcn_varargsAlon Zakai
2013-09-03update test_dlfcn_varargsAlon Zakai
2013-09-03update test_dlfcn_aliasAlon Zakai
2013-09-03update test_dlfcn_data_and_fptrAlon Zakai
2013-09-03support 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-03use function table offset for F_BASE_* in shared modulesAlon Zakai
2013-09-03do not override Runtime methods with asm methods in side modulesAlon Zakai
2013-09-03use addFunction in dlsym, and define F_BASE in side modules so they can run ↵Alon Zakai
as shared libs
2013-09-03disable ALIASING_FUNCTION_POINTERS for DLOPEN_SUPPORTAlon Zakai
2013-09-03commentAlon Zakai
2013-09-03refactor test_dlfcn_qsortAlon Zakai
2013-09-03refactor dlfcn test codeAlon Zakai
2013-09-03emit side module memory initializer in the right place; test_dlfcn_basic ↵Alon Zakai
works in asm
2013-09-03forward parent Module to side moduleAlon Zakai
2013-09-03do not emit static allocations in side modulesAlon Zakai
2013-09-03track maximum function index when using dlopen supportAlon Zakai
2013-09-03disable memory init file in test_dlfcn_basicAlon Zakai
2013-09-03enable test_dlfcn_basic for asm modulesAlon Zakai
2013-09-03Merge pull request #1576 from inolen/misc_stubsAlon Zakai
misc stubs for in.h and sdl.h
2013-09-03Merge pull request #1543 from juj/configure_debug_loggingAlon Zakai
Configure debug logging.
2013-09-03disable node stdin fixes due to side effectsAnthony Pesch
2013-09-01Use 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-01misc in.h and SDL joystick stubsAnthony Pesch
2013-08-31fix gethostbyname_r typesAlon Zakai
2013-08-31Merge pull request #1575 from inolen/accept_fixesAlon Zakai
accept fixes
2013-08-31remove 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_enetAnthony Pesch
- added debugging info to websocket backend
2013-08-31better error messageAlon Zakai
2013-08-30don't close client sockets by default in echo server enabling TCP teardown ↵Anthony Pesch
to succeed