Age | Commit message (Collapse) | Author | |
---|---|---|---|
2014-02-03 | sscanf fix and test fix | Alon Zakai | |
2014-02-01 | make sure RAND_MAX is a proper value | Alon Zakai | |
2014-01-31 | make sure rand() returns values only up to RAND_MAX; #18551.10.1 | Alon Zakai | |
2014-01-31 | further fix for #1407 | Alon Zakai | |
2014-01-30 | asmify rand | Alon Zakai | |
2014-01-30 | asmify rand_r | Alon Zakai | |
2014-01-30 | use Math.imul in rand_r | Alon Zakai | |
2014-01-30 | use all 32 bits in rand_r | Alon Zakai | |
2014-01-30 | misc cleanups | Alon Zakai | |
2014-01-30 | Merge branch 'rand' of github.com:coolwanglu/emscripten into incoming | Alon Zakai | |
2014-01-29 | fix locale-removing aliases that break because they then have the wrong sig; ↵ | Alon Zakai | |
fixes #2076 | |||
2014-01-27 | fix some safeHeap errors with the new exceptions code; fixes #2068 | Alon Zakai | |
2014-01-24 | Improve C++ exception handling. | Bruce Mitchener | |
We now allocate extra bytes before the exception data and use that, rather than globals, to store the exception type and destructor information. This is step one towards having multiple exceptions in flight at once. We also track what exceptions are currently being caught in a stack maintained in __cxa_begin_catch and __cxa_end_catch. This is used for ensuring that we handle nested exception catch blocks correctly. | |||
2014-01-22 | eliminate llvm_prefetch; fixes #2043 | Alon Zakai | |
2014-01-22 | fastcomp updates and a test for fptosi|ui on floats and doubles | Alon Zakai | |
2014-01-22 | avoid unresolved symbol warnings on misc funcs in fastcomp | Alon Zakai | |
2014-01-20 | Merge pull request #2037 from waywardmonkeys/updates5 | Alon Zakai | |
Updates 5 | |||
2014-01-21 | Move workaround for emscripten from include/exception to library.js. | Bruce Mitchener | |
2014-01-20 | fix longjmp call by pointer in fastcomp, and enable test_longjmp2 | Alon Zakai | |
2014-01-20 | Remove unused _Unwind_* functions. | Bruce Mitchener | |
2014-01-19 | remove obsolete assertion | Alon Zakai | |
2014-01-18 | Implement catopen/catgets/catclose to help libcxx tests pass. | Bruce Mitchener | |
2014-01-18 | No need for 64 bit aliases for these | Bruce Mitchener | |
2014-01-18 | Remove unused aliases. | Bruce Mitchener | |
2014-01-17 | add missing ; | Alon Zakai | |
2014-01-17 | add missing ;s | Alon Zakai | |
2014-01-17 | add missing ; | Alon Zakai | |
2014-01-16 | Merge branch 'remove-01-aliases' of github.com:waywardmonkeys/emscripten ↵ | Alon Zakai | |
into incoming | |||
2014-01-16 | fix strnlen input of size, which should be unsigned | Alon Zakai | |
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-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 | |