Age | Commit message (Collapse) | Author | |
---|---|---|---|
2013-08-15 | Merge pull request #1513 from modeswitch/webrtc-tests | Alon Zakai | |
Webrtc test | |||
2013-08-14 | Merge pull request #1514 from inolen/default_open_mode | Alon Zakai | |
default to mode 0666 in FS.open | |||
2013-08-14 | Minor fixes for webrtc test. | Alan Kligman | |
2013-08-13 | default to mode 0666 | Anthony Pesch | |
2013-08-14 | Add return value to sendmsg. | Alan Kligman | |
2013-08-13 | - made FS.readdir easier to use | Anthony Pesch | |
- tightened up exported node and stream ops for each type | |||
2013-08-11 | use performance timers for usleep if available | ToadKing | |
2013-08-10 | Merge pull request #1498 from inolen/lib_reorg | Alon Zakai | |
FS-related module reorganization | |||
2013-08-09 | - merged FS and VFS namespaces | Anthony Pesch | |
- split off fs, memfs, sockfs and tty libraries | |||
2013-08-10 | Provide additional errno messages. | Bruce Mitchener | |
2013-08-10 | Remove errno codes that don't exist in musl. | Bruce Mitchener | |
2013-08-09 | print from exit(), so that explicitly calling it prints out the exit status | Alon Zakai | |
2013-08-09 | Merge pull request #1488 from waywardmonkeys/errno-definitions | Alon Zakai | |
Errno definitions | |||
2013-08-09 | Merge pull request #1487 from waywardmonkeys/fix-typos | Alon Zakai | |
Fix typos | |||
2013-08-09 | Merge pull request #1477 from inolen/websocket_tests | Alon Zakai | |
misc socket-related library fixes and updated websocket tests | |||
2013-08-09 | Use cDefine to get numerical values for errors. | Bruce Mitchener | |
2013-08-09 | Fix some typos. | Bruce Mitchener | |
2013-08-08 | converted Object.defineProperty calls to use Object.defineProperties in ↵ | Anthony Pesch | |
order to make closure happy | |||
2013-08-08 | Merge pull request #1470 from inolen/preload_path_fixes | Alon Zakai | |
file preload path fixes | |||
2013-08-08 | Added FS deps to socket-related library functions | Anthony Pesch | |
2013-08-07 | - select shouldn't return an error when the socket is valid, but disconnected | Anthony 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-07 | add missing return value in readdir_r | Alon Zakai | |
2013-08-07 | fix test_files | Alon Zakai | |
2013-08-07 | manually fill heap history in write targets of VFS.write|read into the heap | Alon Zakai | |
2013-08-07 | indentation fix | Alon Zakai | |
2013-08-07 | Merge pull request #1478 from inolen/function_spacing | Alon Zakai | |
updated bad function formatting | |||
2013-08-07 | Merge pull request #1479 from j4m3z0r/fast_isspace | Alon Zakai | |
Workaround for Chrome bug https://code.google.com/p/chromium/issues/deta... | |||
2013-08-07 | Workaround 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-07 | updated bad function formatting | Anthony Pesch | |
2013-08-06 | store preloaded images by their absolute path | Anthony Pesch | |
2013-08-06 | fix path handling in createPreloadedFile | Alon Zakai | |
2013-08-06 | fix for process.cwd usage | Anthony Pesch | |
2013-08-06 | do not swallow errors in FS try-catches that are not ErrnoErrors | Alon Zakai | |
2013-08-06 | remove createPreloadedFile__deps which is on an internal property | Alon Zakai | |
2013-08-06 | Merge pull request #1348 from mnaamani/inet | Alon Zakai | |
handle IPv6 addresses in inet_ntop and inet_pton | |||
2013-08-06 | Merge pull request #1458 from inolen/vfs | Alon Zakai | |
initial vfs work | |||
2013-08-06 | handle IPv6 addresses in inet_ntop and inet_pton | Mokhtar Naamani | |
2013-08-05 | Removed USE_OLD_FS | Anthony Pesch | |
2013-08-05 | hacked createLazyFile to work with the new FS code | Anthony Pesch | |
2013-08-05 | initial VFS work | Anthony Pesch | |
2013-08-05 | Split out createPreloadedFile to FSCOM | Anthony Pesch | |
2013-08-05 | - convert to new stream API function names | Anthony Pesch | |
- convert all indexing into FS.streams to use FS.getStream | |||
2013-08-04 | Use single quotes instead of double quotes with cDefine. | Bruce Mitchener | |
This makes these 2 usages match all of the others. | |||
2013-08-02 | Merge pull request #1457 from inolen/fs_init_split | Alon Zakai | |
split up FS.init | |||
2013-08-02 | Merge pull request #1453 from yukoba/flock-mprotect-msync | Alon Zakai | |
Empty implmentations of flock, mprotect and msync | |||
2013-08-02 | split up FS.init | Anthony Pesch | |
2013-08-01 | optimize bsearch | Alon Zakai | |
2013-08-01 | Merge branch 'qsort_reduce_callchain' of github.com:PinZhang/emscripten into ↵ | Alon Zakai | |
incoming | |||
2013-08-01 | Merge pull request #1455 from j4m3z0r/fast_isspace | Alon Zakai | |
Use switch statement for isspace implementation. Results in huge speed i... | |||
2013-08-01 | Use 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. |