aboutsummaryrefslogtreecommitdiff
path: root/src
AgeCommit message (Collapse)Author
2013-08-07Merge pull request #1479 from j4m3z0r/fast_isspaceAlon Zakai
Workaround for Chrome bug https://code.google.com/p/chromium/issues/deta...
2013-08-07Workaround for Chrome bug ↵James Gregory
https://code.google.com/p/chromium/issues/detail?id=269679 : switch statement I added in isspace to make it faster seemed to cause the whole function to be optimized away. Replace with simple range checks in conditional expression.
2013-08-06fix path handling in createPreloadedFileAlon Zakai
2013-08-06fix for process.cwd usageAnthony Pesch
2013-08-06do not swallow errors in FS try-catches that are not ErrnoErrorsAlon Zakai
2013-08-06remove createPreloadedFile__deps which is on an internal propertyAlon Zakai
2013-08-06Merge pull request #1348 from mnaamani/inetAlon Zakai
handle IPv6 addresses in inet_ntop and inet_pton
2013-08-06Merge pull request #1458 from inolen/vfsAlon Zakai
initial vfs work
2013-08-06Merge pull request #1459 from j4m3z0r/gl_delete_buffers_nocrashAlon Zakai
Ensure glDeleteBuffers silently processes non-existent names, per spec.
2013-08-05Coding conventions fix.James Gregory
2013-08-06handle IPv6 addresses in inet_ntop and inet_ptonMokhtar Naamani
2013-08-05Removed USE_OLD_FSAnthony Pesch
2013-08-05infrastructure to track the costs of outlining, and to possibly change ↵Alon Zakai
outlining thresholds as we go
2013-08-05hacked createLazyFile to work with the new FS codeAnthony Pesch
2013-08-05initial VFS workAnthony Pesch
2013-08-05Split out createPreloadedFile to FSCOMAnthony Pesch
2013-08-05 - convert to new stream API function namesAnthony Pesch
- convert all indexing into FS.streams to use FS.getStream
2013-08-04Modify glDeleteBuffers changes per azakai's comments.James Gregory
2013-08-04mention DISABLE_GL_EMULATION option when initializing gl emulationAlon Zakai
2013-08-04Use single quotes instead of double quotes with cDefine.Bruce Mitchener
This makes these 2 usages match all of the others.
2013-08-02Ensure glDeleteBuffers silently processes non-existent names, per spec.James Gregory
2013-08-02accept phi subItems that are parsable LLVM functionsAlon Zakai
2013-08-02Merge pull request #1457 from inolen/fs_init_splitAlon Zakai
split up FS.init
2013-08-02Merge pull request #1453 from yukoba/flock-mprotect-msyncAlon Zakai
Empty implmentations of flock, mprotect and msync
2013-08-02split up FS.initAnthony Pesch
2013-08-01optimize bsearchAlon Zakai
2013-08-01Merge branch 'qsort_reduce_callchain' of github.com:PinZhang/emscripten into ↵Alon Zakai
incoming
2013-08-01Merge pull request #1452 from inolen/onprerunAlon Zakai
added addOnPreRun and addOnPostRun
2013-08-01Merge pull request #1455 from j4m3z0r/fast_isspaceAlon Zakai
Use switch statement for isspace implementation. Results in huge speed i...
2013-08-01Use switch statement for isspace implementation. Results in huge speed ↵James Gregory
increase on Chrome Android at least, avoiding a hot path in common tasks like XML parsing, etc.
2013-08-01Empty implmentations of flock, mprotect and msyncYu Kobayashi
2013-07-31added addOnPreRun and addOnPostRunAnthony Pesch
2013-07-31add some closure aliasesAlon Zakai
2013-07-31support for stb-imageAlon Zakai
2013-07-31Reduce call chain of qsortpzhang
This will considerably improve the performance of qsort-heavily-used projects like Android-Pinyin-IME, more discussion: https://groups.google.com/forum/#!topic/emscripten-discuss/Ah2CNfQ8ra4 https://github.com/kripken/emscripten/pull/1437
2013-07-30 - fixed AudioBufferSourceNode start call, pass it an asbsolute time, not ↵Anthony Pesch
relative - call updateSource when calling alGetSourcei
2013-07-30- Added debugging infoAnthony Pesch
- Changed source validation conditionals.
2013-07-30First pass at buffer queueingAnthony Pesch
2013-07-30show exit status if exit() is called within main(); fixes test_exit_statusAlon Zakai
2013-07-30fix gmtime; closes #1366Alon Zakai
2013-07-30Merge pull request #1449 from inolen/postrun_fixesAlon Zakai
update test_ccall to not use a postrun hook
2013-07-30Merge pull request #1444 from inolen/async_mainAlon Zakai
don't expect an exit status to be returned from run or callMain
2013-07-30Update test_ccall to not use a postrun hookAnthony Pesch
2013-07-30Fix the build, missing comma.Bruce Mitchener
2013-07-29 - remove code that attempts to propogate _main's exit status through ↵Anthony Pesch
returns. we can't rely on that, the status must be signaled through an event to support both sync / async applications. - consolidate exit functionality - moved exitRuntime to callMain
2013-07-30Missing word in comment in src/settings.js.Bruce Mitchener
2013-07-30Organize C_DEFINES alphabetically.Bruce Mitchener
This makes it easier to deal with subsequent changes that will be coming.
2013-07-29use fgetc/ungetc in fscanf; properly fixes #1436Alon Zakai
2013-07-30Add bcopy implementationYu Kobayashi
2013-07-29Merge pull request #1440 from yukoba/statvfs_doc_urlAlon Zakai
Fix statvfs document URL