aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2013-09-18Merge pull request #1628 from michaeljbishop/pread-fix2Alon Zakai
Fixes in pread()
2013-09-18Removed old test case and put a test case in a more appropriate area.Michael J. Bishop
tests/unistd/io.* --- Revert "Added to the test_files test to ensure the pread() functionality." This reverts commit 2ed2fb5df392251a0957543b920272b9b2ae7908.
2013-09-18Added to the test_files test to ensure the pread() functionality.Michael J. Bishop
2013-09-17Fixes in pread()Michael J. Bishop
The bug occurs when pread() doesn't return 0 when asked to read an offset beyond its buffer. This behavior is explicitly documented at: http://pubs.opengroup.org/onlinepubs/000095399/functions/read.html > If the starting position is at or after the end-of-file, 0 > shall be returned
2013-09-16Merge pull request #1618 from sbalko/incomingAlon Zakai
Incoming
2013-09-14dynamically determine relooper heap size using RELOOPER_BUFFER_SIZE1.5.9Alon Zakai
2013-09-14Incorporating formatting suggestions from pull requestSoeren Balko
2013-09-13Merge pull request #1620 from waywardmonkeys/remove-cxx-mangled-catgetsAlon Zakai
Remove cxx mangled catgets / catopen / catclose.
2013-09-14Remove C++ mangled catgets / catopen / catclose.Bruce Mitchener
In the old headers, these were not extern "C", so they would show up mangled when built for C++. This is no longer the case with the new libc headers.
2013-09-13tolerate SDL_Delay in workersAlon Zakai
2013-09-13RELOOPER_BUFFER_SIZE to change the relooper buffer size easily1.5.8Alon Zakai
2013-09-13refactor memory initializer code to use run dependenciesfailureAlon Zakai
2013-09-13emscripten_async_load_scriptAlon Zakai
2013-09-13clear dependenciesFulfilled after useAlon Zakai
2013-09-13refactor code to handle when run dependencies reach 0Alon Zakai
2013-09-13remove unneeded varAlon Zakai
2013-09-13second enet fix to handle musl headers in emscriptenAlon Zakai
2013-09-13Merge pull request #1615 from waywardmonkeys/fix-preprocessor-usageAlon Zakai
Fix using emcc -E.
2013-09-13Merge pull request #1616 from waywardmonkeys/typo-fixAlon Zakai
Typo fix.
2013-09-13Merge pull request #1619 from waywardmonkeys/python-build-instructionsAlon Zakai
Python build instructions
2013-09-13Add compat sys/socketvar.hBruce Mitchener
This is required by xmlvm's hysock which is needed for the benchmark.test_zzz_java_nbody test.
2013-09-13Don't define _POSIX_SHARED_MEMORY_OBJECTS.Bruce Mitchener
This isn't implemented, so don't define it.
2013-09-13add some stubs for libc needed by libc++Alon Zakai
2013-09-13simplify other.test_llvm_nativizer to not rely on libc stuffAlon Zakai
2013-09-13update sanity.test_jcacheAlon Zakai
2013-09-13headers readmeAlon Zakai
2013-09-13Don't define _POSIX_SHARED_MEMORY_OBJECTS.Bruce Mitchener
This isn't implemented, so don't define it.
2013-09-13Skip test_math unless using ta2Bruce Mitchener
isfinite and friends require ta2 with musl headers.
2013-09-13Incorrect return type on a compat header.Bruce Mitchener
This was exposed by the update to musl 0.9.13 which now has a prototype for this function.
2013-09-13Update to musl-0.9.13 headers.Bruce Mitchener
2013-09-13Correctly note musl provenance and differences.Bruce Mitchener
2013-09-13Change various 64 bit typedefs over to 32 bit.Bruce Mitchener
This also removes all of the changes that were needed for those typedefs to be 64 bit.
2013-09-13gethostbyname_r update.Bruce Mitchener
* gethostbyname_r is now the 6 arg version. * Make enet use the right code path (this should be upstreamed). * Add a compat header to make these declarations visible to all without extra compilation flags.
2013-09-13Fix sockaddr struct definitions for musl.Bruce Mitchener
2013-09-13Handle fpclassify and signbit for long double.failsBruce Mitchener
2013-09-13Emscripten requires different #s for stdio fds.Bruce Mitchener
2013-09-13Bump version for new libc headers.1.5.7Bruce Mitchener
2013-09-13Provide better impl of __assert_fail().Bruce Mitchener
2013-09-13Fix fpclassify with musl libc headers.Bruce Mitchener
musl defines __fpclassify, __fpclassifyf, __fpclassifyl while the old headers used __fpclassifyd for double rather than __fpclassify.
2013-09-13Add __va_copy as a compat/stdarg.hBruce Mitchener
2013-09-13Fix time tests.Bruce Mitchener
2013-09-13Fix other.test_embind & other.test_static_link.Bruce Mitchener
2013-09-13Update to work with new libc headers.Bruce Mitchener
2013-09-13Update libc headers to use musl headers.Bruce Mitchener
2013-09-13Expand on the instructions for building Python.Bruce Mitchener
2013-09-13Merge branch 'incoming' of github.com:sbalko/emscripten into incomingSoeren Balko
2013-09-13Enable %[] pattern in scanfSoeren Balko
2013-09-13Enable %[] pattern in scanfSoeren Balko
2013-09-13Fix using emcc -E.Bruce Mitchener
We don't want to pass this extra flag to emcc as it breaks when doing EMCONFIGURE_JS=1 emconfigure ./configure ...
2013-09-12try to use console.log even in workersAlon Zakai