aboutsummaryrefslogtreecommitdiff
path: root/src/library_fs.js
AgeCommit message (Expand)Author
2014-06-17don't open files with empty pathSathyanarayanan Gunasekaran
2014-06-11change value of position after seekingSathyanarayanan Gunasekaran
2014-06-05Use typed arrays instead of normal JS arrays to back files in the MEMFS files...Jukka Jylänki
2014-04-30Rename FS tracking delegate did* to on* as suggested in https://github.com/kr...Jukka Jylänki
2014-04-29Wrapped the delegate calls in exception handlers so the exceptionsMichael J. Bishop
2014-04-29Added support for moving paths.Michael J. Bishop
2014-04-29Added support for file tracking being used to track whenMichael J. Bishop
2014-04-29Added file closing to the list of tracked events.Michael J. Bishop
2014-04-29Added FileSystem tracking Support.Michael Bishop
2014-04-15stop using __proto__ as an optimization, it actually makes things slowerAlon Zakai
2014-03-03Strict: Don't define functions within conditional.Bruce Mitchener
2014-02-20strict fix: Can't use octal constants.Bruce Mitchener
2014-02-02Differentiate between file pointers and file descriptors.Ryan Kelly
2014-02-02Use standard fds of 0,1,2 rather than 1,2,3Ryan Kelly
2014-01-31Merge pull request #2079 from inolen/fs_unmountAlon Zakai
2014-01-30added basic unmount supportAnthony Pesch
2014-01-30don't leak streams in readFile and writeFileAnthony Pesch
2014-01-09utilize stack member from base Error classAnthony Pesch
2013-12-16fix typoLu Wang
2013-11-05use __proto__ when available for new streams, otherwise do a full copy; fixes...Alon Zakai
2013-11-04Give names to most manually assigned functions in the .js files, in form "var...Jukka Jylänki
2013-10-28optimize createStreamAlon Zakai
2013-10-28fix handling of generating path with a mountpoint ending with '/'Alon Zakai
2013-10-28do not normalize in getPath, since our paths elements are already okAlon Zakai
2013-10-28avoid constant path normalization in getPathAlon Zakai
2013-10-28add PATH.join2 as a fast way to join 2 path elements without the generic over...Alon Zakai
2013-10-28optimize FS.createNodeAlon Zakai
2013-10-28reuse node in last chmod call from createDataFileAlon Zakai
2013-10-28reuse node in open call from createDataFileAlon Zakai
2013-10-28reuse node in chmod call from createDataFileAlon Zakai
2013-10-28reuse some FS errors in places where overhead is high and stack importance is...Alon Zakai
2013-10-14ensure ErrnoError exists during static initializationAlon Zakai
2013-10-13warn on missing library deps, remove an obsolete VFS dep, and add a necessary...Alon Zakai
2013-10-12un-closurify ErrnoErrorAlon Zakai
2013-10-12use stackTrace in various placesAlon Zakai
2013-10-02Add -s CASE_INSENSITIVE_FS=1 linker option to allow VFS to lookup files in ca...Jukka Jylänki
2013-09-27 - added idbfs and nodefsAnthony Pesch
2013-09-27 - made chdir use FS.chdirAnthony Pesch
2013-09-17Fixes in pread()Michael J. Bishop
2013-09-12Module.logReadFiles optionAlon Zakai
2013-09-04rearranged FS function orderAnthony Pesch
2013-09-03 - added readFile and writeFile helpersAnthony Pesch
2013-08-30Merge pull request #1557 from inolen/sockfsAlon Zakai
2013-08-29allow null second param in createPreloadedFile|createDataFile so that file pa...Alon Zakai
2013-08-29 - created SOCKFSAnthony Pesch
2013-08-28Fix permissions set by FS.createDeviceRanger Harke
2013-08-27FS.loadFilesFromDB|saveFilesToDBAlon Zakai
2013-08-23own the subarrays created by file preloading, to avoid a copyAlon Zakai
2013-08-16create FS.name_table at runtime, to reduce code sizeAlon Zakai
2013-08-15Merge pull request #1511 from inolen/errnoerrorAlon Zakai