diff options
author | Andreas Kling <awesomekling@gmail.com> | 2018-12-20 00:39:29 +0100 |
---|---|---|
committer | Andreas Kling <awesomekling@gmail.com> | 2018-12-20 00:39:29 +0100 |
commit | ed7ae6c02c837cf3db5be0da97276a47dbd3af50 (patch) | |
tree | f4711b7a6f2e560b9ed2cee47aa05f0f7f4c75e0 /Userland/.gitignore | |
parent | d0f06e5f3ff7c3095538bade2543bc6a2ed13676 (diff) | |
download | serenity-ed7ae6c02c837cf3db5be0da97276a47dbd3af50.zip |
Add sync() syscall and a /bin/sync.
It walks all the live Inode objects and flushes pending metadata changes
wherever needed.
This could be optimized by keeping a separate list of dirty Inodes,
but let's not get ahead of ourselves.
Diffstat (limited to 'Userland/.gitignore')
-rw-r--r-- | Userland/.gitignore | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Userland/.gitignore b/Userland/.gitignore index c5f95143dc..27f4a6276a 100644 --- a/Userland/.gitignore +++ b/Userland/.gitignore @@ -22,3 +22,4 @@ strsignal fgrep mkdir touch +sync |