Age | Commit message (Collapse) | Author | |
---|---|---|---|
2014-01-16 | add __h_errno; fixes #2013 | Alon Zakai | |
2014-01-16 | Remove __01*64_ aliases that don't appear to be necessary. | Bruce Mitchener | |
These were added when Python support was fixed up, but don't appear to be needed or used anywhere. | |||
2014-01-15 | Provide compile time and run time options for WebSocket URL and subprotocol ↵ | Fraser Adams | |
fields | |||
2014-01-13 | add fputwc, which enables wprintf1.8.9 | Alon Zakai | |
2014-01-13 | Merge branch 'incoming' of github.com:kripken/emscripten into incoming1.8.8 | Alon Zakai | |
conflicts: tests/test_core.py tools/shared.py | |||
2014-01-13 | Merge pull request #2004 from waywardmonkeys/updates | Alon Zakai | |
Updates | |||
2014-01-13 | unset precision if set to -1 | Alon Zakai | |
2014-01-13 | handle precision -1 in printf .* | Alon Zakai | |
2014-01-14 | Add lots of math functions. | Bruce Mitchener | |
2014-01-14 | Add strtod(), wcstod(), wcstol() and friends. | Bruce Mitchener | |
This implementation of strtod() replaces the old as it implements support for parsing hex constants which is needed by various tests. | |||
2014-01-13 | add dependencies so code with exceptions (invoke/landingpad) but without an ↵ | Alon Zakai | |
actual throw will still pull in the necessary stuff | |||
2014-01-03 | do not assume callee.caller always exists | Alon Zakai | |
2013-12-20 | Move emscripten-source-map.min.js to src/ since it is a non-tests file ↵ | Jukka Jylänki | |
needed by public use when user wants to emscripten_log with a C callstack. Remove redundant emscripten_demangle function. | |||
2013-12-20 | Update emscripten_log to work with the handwritten JS demangler. Update tests. | Jukka Jylänki | |
2013-12-20 | Also give the ability to print out function parameters in the callstack with ↵ | Jukka Jylänki | |
emscripten_get_callstack. | |||
2013-12-20 | Add new functions emscripten_log() in emscripten.h which allows printing out ↵ | Jukka Jylänki | |
log messages with callstack information, and function emscripten_get_callstack(), which allows programmatically obtaining the current callstack. | |||
2013-12-11 | Merge pull request #1853 from fadams/add-getprotobyname | Alon Zakai | |
add getprotobyname and associated functions from netdb.h. Add test_getpr... | |||
2013-12-07 | fix i64 reads in formatString for fastcomp | Alon Zakai | |
2013-12-02 | report better error in fread on bad stream | Alon Zakai | |
2013-12-02 | return 0 on fread on invalid stream | Alon Zakai | |
2013-12-02 | make posix_madvise standlone | Alon Zakai | |
2013-11-29 | fix memmove return value | Alon Zakai | |
2013-11-28 | fix memset return value | Alon Zakai | |
2013-11-28 | check error in mkdtemp() | Lu Wang | |
2013-11-28 | mkdtemp | Lu Wang | |
2013-11-27 | add dso_handle to library, for fastcomp | Alon Zakai | |
2013-11-26 | getting some initial set of x86 intrinsics mapped to JS SIMD ops; update ↵ | Heidi Pan | |
existing SIMD code to use updated JS SIMD API (SIMD.type.op instead of SIMD.op & SIMD.opu32; int32x4 instead of uint32x4); bug fix: right type of withX() for int32x4 initialization; bug fix: splat(0) instead of zero() for int32x4 initialization | |||
2013-11-26 | replace PROTOCOL_LIST and PROTOCOL_MAP with a Protocols object containing a ↵ | Fraser Adams | |
list and a map instance | |||
2013-11-26 | in getprotoent return 0 rather than null if we reach eof in our protocol ↵ | Fraser Adams | |
database | |||
2013-11-27 | fix rand_r; add rand_r in test_rand | Lu Wang | |
2013-11-27 | Revert "use js variable for rand_seed" | Lu Wang | |
This reverts commit 3e31f83ac762e34b266b7888aec161bb2b843dd1. | |||
2013-11-27 | use js variable for rand_seed | Lu Wang | |
2013-11-25 | srand() & simple rand() supporing seed | Lu Wang | |
2013-11-24 | support for ignoring nacl intrinsics | Alon Zakai | |
2013-11-24 | add getprotobyname and associated functions from netdb.h. Add ↵ | Fraser Adams | |
test_getprotobyname.c test suite and update test_sockets.py to include test_getprotobyname. ./runner.py sockets.test_getprotobyname completes successfully | |||
2013-11-22 | fix pthread_setspecific on values of null | Alon Zakai | |
2013-11-21 | add some support for le32=2 mode, where varargs is just 4-byte aligned | Alon Zakai | |
2013-11-18 | fix a bug in the accept call in library.js whereby if accept was called with ↵ | Fraser Adams | |
non-NULL addr and addrlen parameters a ReferenceError occurs because accept had a parameter of addrp but later used addr. Modified tests_sockets_echo_server.c to use non-NULL addr if TEST_ACCEPT_ADDR is defined and added test case to test_sockets.py | |||
2013-11-17 | fix some leaked globals; fixes #1823 | Alon Zakai | |
2013-11-17 | EM_ASM_INT and EM_ASM_DOUBLE, which allow input and output values from ↵ | Alon Zakai | |
EM_ASM; fixes #1819 | |||
2013-11-16 | fix clock_getres for higher-resolution timing we now support; improves #1795 | Alon Zakai | |
2013-11-15 | precise clock_gettime when not using CLOCK_REALTIME; fixes #17951.7.7 | Alon Zakai | |
2013-11-12 | don't print anything in exit(); fixes #1791 | Alon Zakai | |
2013-11-11 | Merge pull request #1774 from fadams/fix-getaddrinfo-null-hints | Alon Zakai | |
Provided an implementation for gai_strerror and gave getaddrinfo sensibl... | |||
2013-11-11 | Replaced loop in gai_strerror with writeAsciiToMemory call and made the ↵ | Fraser Adams | |
comment around hopefully a little more descriptive | |||
2013-11-10 | use writeAsciiToMemory in library.js in more places | Alon Zakai | |
2013-11-10 | nanosleep - don't write to rmtp if it's NULL | ToadKing | |
2013-11-10 | Changed library.js line 7509 to use hint !== 0 test vice hint != 0 | Fraser Adams | |
2013-11-09 | Provided an implementation for gai_strerror and gave getaddrinfo sensible ↵ | Fraser Adams | |
default behaviour when hints is set to NULL. Ideally getaddrinfo should supply multiple addrinfo values when hints is NULL or ai_family is set to AF_UNSPEC but this is a somewhat more complex proposition | |||
2013-11-08 | Merge branch 'master' of github.com:bobroberts177/emscripten into incoming | Alon Zakai | |