aboutsummaryrefslogtreecommitdiff
path: root/src
AgeCommit message (Collapse)Author
2012-11-08improve node detectionAlon Zakai
2012-11-08support inet_ntoa and inet_aton, and fix inet_ntop bug with not writing null ↵Alon Zakai
terminator
2012-11-08optimal cwrapAlon Zakai
2012-11-07improve memory growth errorAlon Zakai
2012-11-07commented out safe heap code for infinities and nansAlon Zakai
2012-11-06remove now-unneeded currFunctionsAlon Zakai
2012-11-06generate indexedFunctions in pre, and give it the information to do soAlon Zakai
2012-11-06fix printing of GENERATED_FUNCTIONSAlon Zakai
2012-11-06process each function separately in emscriptAlon Zakai
2012-11-06split js compiler into three passes, to facilitate future parallizationAlon Zakai
2012-11-05add proper indentation in long.js to not confuse js optimizer splitterAlon Zakai
2012-11-05be more careful about printing out assertion messages, not all metadata is ↵Alon Zakai
always present
2012-11-05fix fread/fwrite returns values on error; fixes #675Alon Zakai
2012-11-05Added %lld support to __scanStringManuel Wellmann
Also extended makeSetValue for the i64/typed_array=2 case.
2012-11-03fix windows line endingsAlon Zakai
2012-11-02improve js Benchmarker utilityAlon Zakai
2012-11-02commented out refactoring of makeRoundingAlon Zakai
2012-11-02fix s_0_0.test_sscanfAlon Zakai
2012-11-01send sendmsg chunks all together in one socket sendAlon Zakai
2012-11-01write source of message in recvmsgAlon Zakai
2012-10-31fix sendmsg return valueAlon Zakai
2012-10-31fix sendmsg and recvmsg handling of iovAlon Zakai
2012-10-31send ArrayBuffers, not ArrayBufferViews, in socket code, to handle older ↵Alon Zakai
browsers
2012-10-31Merge pull request #665 from caiiiycuk/sscanfAlon Zakai
Fix sscanf white space bug
2012-10-31clear error message when browser createObjectURL does not return a string as ↵Alon Zakai
the spec says it should
2012-10-31warn in SDL_CreateThread about the problem with SDL threadsAlon Zakai
2012-10-31Fix sscanf whitespace bugAleksander Guryanov
Add test for sscanf
2012-10-30refactor DEFAULT_LIBRARY_FUNCS_TO_INCLUDEAlon Zakai
2012-10-30support growing the socket data buffer, and enable working bigdata socket testAlon Zakai
2012-10-30use binary data in websocketsAlon Zakai
2012-10-29fix bug with locking an sdl surface not reading the canvas pixel data ↵Alon Zakai
properly; fixes #664
2012-10-29only fire sdl unload event if there is a main loopAlon Zakai
2012-10-29adjust memory size in testsAlon Zakai
2012-10-28Merge pull request #651 from larsxschneider/json_parserAlon Zakai
Fix -O1 warning and use proper pointers for Jansson library.
2012-10-27memory growth must be manually enabled with ALLOW_MEMORY_GROWTH, in which ↵Alon Zakai
case the eliminator runs in safe mode
2012-10-27eliminate into one-time do-while loopsAlon Zakai
2012-10-26emscripten_get_worker_queue_sizeAlon Zakai
2012-10-26support for %n in sscanfAlon Zakai
2012-10-26do not do signalyzer pass if sign correction is on - it can only hurt thereAlon Zakai
2012-10-25warning and TODO on memory enlargingAlon Zakai
2012-10-25push to FUNCTION_TABLE, don't concat and re-assign: this avoid changing the ↵Alon Zakai
global FUNCTION_TABLE object, and makes it valid in compiled code to assume that globals do not change
2012-10-25Fix -O1 warning and use proper pointers for Jansson library.Lars Schneider
See details: https://github.com/kripken/emscripten/pull/636#issuecomment-9456782
2012-10-22handle no-data worker api calls, and more testsAlon Zakai
2012-10-22worker api closure fixes + additional testingAlon Zakai
2012-10-22initial work on worker apiAlon Zakai
2012-10-22fix SAFE_HEAP historyAlon Zakai
2012-10-22fix strtok temp state ; fixes #658Alon Zakai
2012-10-22fix array detection in preadAlon Zakai
2012-10-21listen to glut events on glutInit, so it works even without main loopAlon Zakai
2012-10-19emit unreachable throws only in ASSERTIONS modeAlon Zakai