aboutsummaryrefslogtreecommitdiff
path: root/src/library.js
AgeCommit message (Collapse)Author
2013-08-15Merge pull request #1513 from modeswitch/webrtc-testsAlon Zakai
Webrtc test
2013-08-14Merge pull request #1514 from inolen/default_open_modeAlon Zakai
default to mode 0666 in FS.open
2013-08-14Minor fixes for webrtc test.Alan Kligman
2013-08-13default to mode 0666Anthony Pesch
2013-08-14Add return value to sendmsg.Alan Kligman
2013-08-13 - made FS.readdir easier to useAnthony Pesch
- tightened up exported node and stream ops for each type
2013-08-11use performance timers for usleep if availableToadKing
2013-08-10Merge pull request #1498 from inolen/lib_reorgAlon Zakai
FS-related module reorganization
2013-08-09 - merged FS and VFS namespacesAnthony Pesch
- split off fs, memfs, sockfs and tty libraries
2013-08-10Provide additional errno messages.Bruce Mitchener
2013-08-10Remove errno codes that don't exist in musl.Bruce Mitchener
2013-08-09print from exit(), so that explicitly calling it prints out the exit statusAlon Zakai
2013-08-09Merge pull request #1488 from waywardmonkeys/errno-definitionsAlon Zakai
Errno definitions
2013-08-09Merge pull request #1487 from waywardmonkeys/fix-typosAlon Zakai
Fix typos
2013-08-09Merge pull request #1477 from inolen/websocket_testsAlon Zakai
misc socket-related library fixes and updated websocket tests
2013-08-09Use cDefine to get numerical values for errors.Bruce Mitchener
2013-08-09Fix some typos.Bruce Mitchener
2013-08-08converted Object.defineProperty calls to use Object.defineProperties in ↵Anthony Pesch
order to make closure happy
2013-08-08Merge pull request #1470 from inolen/preload_path_fixesAlon Zakai
file preload path fixes
2013-08-08Added FS deps to socket-related library functionsAnthony Pesch
2013-08-07 - select shouldn't return an error when the socket is valid, but disconnectedAnthony Pesch
- recv should return 0 once the socket has disconnected - send should set ENOTCONN once closed, and EAGAIN while connecting - updated tests to use O_NONBLOCK and better conform to coding standards
2013-08-07add missing return value in readdir_rAlon Zakai
2013-08-07fix test_filesAlon Zakai
2013-08-07manually fill heap history in write targets of VFS.write|read into the heapAlon Zakai
2013-08-07indentation fixAlon Zakai
2013-08-07Merge pull request #1478 from inolen/function_spacingAlon Zakai
updated bad function formatting
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-07updated bad function formattingAnthony Pesch
2013-08-06store preloaded images by their absolute pathAnthony Pesch
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-06handle IPv6 addresses in inet_ntop and inet_ptonMokhtar Naamani
2013-08-05Removed USE_OLD_FSAnthony Pesch
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-04Use single quotes instead of double quotes with cDefine.Bruce Mitchener
This makes these 2 usages match all of the others.
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 #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.