aboutsummaryrefslogtreecommitdiff
path: root/src/library.js
AgeCommit message (Collapse)Author
2013-06-03Fix frexp does not accept negative numbersFrits Talbot
Add frexp unit tests
2013-06-02create /dev/null; issue #1226Alon Zakai
2013-06-01syncd library.js errno codes with sys/errno.hAnthony Pesch
2013-05-30Fixed formatting.Alan Kligman
2013-05-30Don't include webrtc-specific code for websockets builds.Alan Kligman
2013-05-30Fix style issues.Alan Kligman
2013-05-29This fixes various strtoll/strtol issues, including testsSoeren Balko
2013-05-28initialize errnoAlon Zakai
2013-05-27make sure emscripten_run_script_int returns an intAlon Zakai
2013-05-25silence exceptions during cxa_free_exceptionAlon Zakai
2013-05-23Comments.Alan Kligman
2013-05-23Formatting fixes. For some reason, indented preprocessor directives cause ↵Alan Kligman
compiler failures.
2013-05-23Formatting fixes.Alan Kligman
2013-05-23Remove console.log.Alan Kligman
2013-05-23Added var for socket deps.Alan Kligman
2013-05-23Rename global io to SocketIO. Updated webrtc library to pull in global name.Alan Kligman
2013-05-23Add support for webrtc-based sockets. Moved both backends behind a settings ↵Alan Kligman
flag, SOCKET_WEBRTC.
2013-05-23actually implement clock_gettime()Alon Zakai
2013-05-21allocate using NORMAL in FS.init, to avoid races with data packages arriving ↵Alon Zakai
and using malloc before us
2013-05-21Conform to coding conventions.tingyuan
2013-05-21mmap(): Align to malloc's default alignment instead of pages.tingyuan
2013-05-21Assert that MAP_SHARED is only specified with files backed by HEAP.tingyuan
2013-05-211. mmap(): Make use of files that is backed by HEAP.tingyuan
2. mmap(): Use valloc() directly. 3. mmap(): Try to avoid Array.slice() when possible.
2013-05-21fix __errno_locationAlon Zakai
2013-05-21Merge branch 'incoming' of github.com:hyperlogic/emscripten into incomingAlon Zakai
2013-05-19Issue #1172: fix for fscanfAnthony Thibault
2013-05-17Prevent leak detection from tripping on __setErrNoChad Austin
2013-05-16make some more asm things closure-friendlyAlon Zakai
2013-05-16Merge pull request #1173 from manuels/incomingAlon Zakai
Fix bug in rename() that occures if new filename starts with the old filename
2013-05-15Fix bug in rename() that occures if new filename starts with the old filenamemanuels
2013-05-09fix 0x0 in formatString; fixes #1164Alon Zakai
2013-05-09changed getLength to cacheLengthJohn Allwine
2013-05-09changed createLazyFile to only issue xhr requests when the file is accessed ↵John Allwine
(fixes issue #1127)
2013-05-08Issue #1134: scanf does not treat CR, FF, VT as whitespaceAnthony Thibault
2013-05-08Fix bug in rename() that occures if new filename starts with the old filenamemanuels
2013-05-05add test for sdl allocation, and warn when using stub malloc/freeAlon Zakai
2013-05-04make memory management sane: 0 is null, then static including globals, then ↵Alon Zakai
stack, then dynamic/sbrk. deprecate shared libs (BUILD_AS_SHARED_LIB)
2013-05-03fix asm.js coercionAlon Zakai
2013-05-02fixes strcat so that it returns the correct valueTom Fairfield
It should return the "dest" pointer that was passed in. test_strings has been updated with a test for the correct behavior.
2013-05-02guard against exceptions in connect(), which can happen due to e.g. security ↵Alon Zakai
violations for websockets
2013-04-30fix varargsAlon Zakai
2013-04-29update emscripten_jcache_printfAlon Zakai
2013-04-29clean up formatString varargs handlingAlon Zakai
2013-04-29fix sscanf, note that all varargs are 64-bit alignedAlon Zakai
2013-04-29read 32-bit chunks of 64-bit varargs in the 64-bit blocks they are inAlon Zakai
2013-04-29fully align varargs and formatString arguments all to 64-bitAlon Zakai
2013-04-29align the stack to 64 bits in le32Alon Zakai
2013-04-29clarify what we do in le32 v*printf etc. functionsAlon Zakai
2013-04-29implement le32 varargs as a struct with two fields: a start and an offsetAlon Zakai
2013-04-29work towards le32 varargsAlon Zakai