index
:
emscripten
master
push-upstream
Emscripten: An LLVM-to-JavaScript Compiler
git repository hosting
about
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
src
/
library_fs.js
Age
Commit message (
Expand
)
Author
2013-11-05
use __proto__ when available for new streams, otherwise do a full copy; fixes...
Alon Zakai
2013-11-04
Give names to most manually assigned functions in the .js files, in form "var...
Jukka Jylänki
2013-10-28
optimize createStream
Alon Zakai
2013-10-28
fix handling of generating path with a mountpoint ending with '/'
Alon Zakai
2013-10-28
do not normalize in getPath, since our paths elements are already ok
Alon Zakai
2013-10-28
avoid constant path normalization in getPath
Alon Zakai
2013-10-28
add PATH.join2 as a fast way to join 2 path elements without the generic over...
Alon Zakai
2013-10-28
optimize FS.createNode
Alon Zakai
2013-10-28
reuse node in last chmod call from createDataFile
Alon Zakai
2013-10-28
reuse node in open call from createDataFile
Alon Zakai
2013-10-28
reuse node in chmod call from createDataFile
Alon Zakai
2013-10-28
reuse some FS errors in places where overhead is high and stack importance is...
Alon Zakai
2013-10-14
ensure ErrnoError exists during static initialization
Alon Zakai
2013-10-13
warn on missing library deps, remove an obsolete VFS dep, and add a necessary...
Alon Zakai
2013-10-12
un-closurify ErrnoError
Alon Zakai
2013-10-12
use stackTrace in various places
Alon Zakai
2013-10-02
Add -s CASE_INSENSITIVE_FS=1 linker option to allow VFS to lookup files in ca...
Jukka Jylänki
2013-09-27
- added idbfs and nodefs
Anthony Pesch
2013-09-27
- made chdir use FS.chdir
Anthony Pesch
2013-09-17
Fixes in pread()
Michael J. Bishop
2013-09-12
Module.logReadFiles option
Alon Zakai
2013-09-04
rearranged FS function order
Anthony Pesch
2013-09-03
- added readFile and writeFile helpers
Anthony Pesch
2013-08-30
Merge pull request #1557 from inolen/sockfs
Alon Zakai
2013-08-29
allow null second param in createPreloadedFile|createDataFile so that file pa...
Alon Zakai
2013-08-29
- created SOCKFS
Anthony Pesch
2013-08-28
Fix permissions set by FS.createDevice
Ranger Harke
2013-08-27
FS.loadFilesFromDB|saveFilesToDB
Alon Zakai
2013-08-23
own the subarrays created by file preloading, to avoid a copy
Alon Zakai
2013-08-16
create FS.name_table at runtime, to reduce code size
Alon Zakai
2013-08-15
Merge pull request #1511 from inolen/errnoerror
Alon Zakai
2013-08-15
Ensure hashName always returns a positive integer.
Ryan Kelly
2013-08-14
Merge pull request #1514 from inolen/default_open_mode
Alon Zakai
2013-08-13
default to mode 0666
Anthony Pesch
2013-08-13
- made FS.readdir easier to use
Anthony Pesch
2013-08-13
make FS.ErrnoError inherit from Error
Anthony Pesch
2013-08-12
add explicit stack trace to FS errors
Alon Zakai
2013-08-09
- merged FS and VFS namespaces
Anthony Pesch