Age | Commit message (Collapse) | Author | |
---|---|---|---|
2014-02-21 | Correct some function dependencies to address unresolved symbols in tests. | Bruce Mitchener | |
2014-02-20 | tolerate negative values of precision in printf, fallback to default precision | Alon Zakai | |
2014-02-19 | Formatting fix and add test | Joel Croteau | |
2014-02-19 | Correct syntax of allocate function | Joel Croteau | |
Fix mistaken syntax for use of allocate and restore original, very strange syntax. | |||
2014-02-19 | Provide better implementation of localeconv and fix logic error in allocate | Joel Croteau | |
This allocates more space to the structure returned by localeconv. This fixes an error caused by some locale functions (specifically moneypunct_byname::init trying to access members of the lconv struct beyond the first and dereferencing invalid pointers. This also fixes a bug in allocate() which occurred when allocating a single-typed array of data of type size greater than one byte. The function had been incrementing its index into the array by the byte size, causing it to skip elements in arrays of larger type sizes. Fixes issue #2134. | |||
2014-02-16 | support memory growth in (non-validating) asm.js | Alon Zakai | |
2014-02-16 | RETAIN_COMPILER_SETTINGS, Runtime.getCompilerSetting and ↵ | Alon Zakai | |
emscripten_get_compiler_setting - an optional way to look up compiler flags at runtime | |||
2014-02-10 | don't forget to set ai_next in getaddrinfo, and use emcc in test_getaddrinfo ↵ | Alon Zakai | |
as it now needs libc | |||
2014-02-10 | add stub for mkport in non-webrtc | Alon Zakai | |
2014-02-10 | fix typo in exceptions code | Alon Zakai | |
2014-02-10 | fix fake _ZTISt9exception | Alon Zakai | |
2014-02-10 | Merge pull request #1408 from rfk/move-std-fds | Alon Zakai | |
Make stdin/stdout/stderr be 0/1/2 per standard posix convention | |||
2014-02-09 | Merge pull request #2084 from amatus/push-upstream | Alon Zakai | |
Remove _-prefix from in6addr_* | |||
2014-02-09 | manually define typeinfo for std::exception | Alon Zakai | |
2014-02-06 | Remove constants that are missing in netinet/in.h1.10.2-0amatus1 | David Barksdale | |
2014-02-06 | Remove _-prefix from in6addr_* | David Barksdale | |
2014-02-06 | Merge pull request #2103 from juj/opt_cmp1.10.2 | Alon Zakai | |
Add optimized versions of musl libc string and memory comparison functions. | |||
2014-02-06 | use .set on big memcpys | Alon Zakai | |
2014-02-06 | Add strcoll as well so that library.js does not need to depend on musl libc ↵ | Jukka Jylänki | |
code. | |||
2014-02-06 | Add optimized versions of musl libc string and memory comparison functions. | Jukka Jylänki | |
2014-02-03 | sscanf fix and test fix | Alon Zakai | |
2014-02-01 | make sure RAND_MAX is a proper value | Alon Zakai | |
2014-02-02 | Differentiate between file pointers and file descriptors. | Ryan Kelly | |
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 | |