diff options
author | Thomas Schwinge <schwinge@nic-nac-project.de> | 2009-08-18 12:22:40 +0200 |
---|---|---|
committer | Thomas Schwinge <schwinge@nic-nac-project.de> | 2009-08-18 12:22:40 +0200 |
commit | 8d6f6b079a205673b36b91986fce589e930cfc83 (patch) | |
tree | 4802af556f05ac093315fda28b9e9253f4530d56 | |
parent | 8b4e64fe1d1cd119a266c5711d5f12fb19bc77e3 (diff) |
Add fdatasync, fsync, sync example from glibc.
-rw-r--r-- | hurd/interface/fs/13.mdwn | 16 | ||||
-rw-r--r-- | hurd/interface/fs/14.mdwn | 10 |
2 files changed, 26 insertions, 0 deletions
diff --git a/hurd/interface/fs/13.mdwn b/hurd/interface/fs/13.mdwn index 27239759..72ae0d06 100644 --- a/hurd/interface/fs/13.mdwn +++ b/hurd/interface/fs/13.mdwn @@ -20,3 +20,19 @@ License|/fdl]]."]]"""]] Sync the individual file. If `omit_metadata` is set, then it is only necessary for the server to updated the actual contents of the file, not any associated metadata. + +# Usage Examples + +## [[glibc]] + + * `fdatasync` + + `file_syncfs (FD, true, true)` -- invoke it on the passed file descriptor, + do wait for completion, do allow omitting to update the associated + metadata. + + * `fsync` + + `file_syncfs (FD, true, false)` -- invoke it on the passed file descriptor, + do wait for completion, don't allow omitting to update the associated + metadata. diff --git a/hurd/interface/fs/14.mdwn b/hurd/interface/fs/14.mdwn index 1e8c51e7..e168e554 100644 --- a/hurd/interface/fs/14.mdwn +++ b/hurd/interface/fs/14.mdwn @@ -18,3 +18,13 @@ License|/fdl]]."]]"""]] do_children: int); Sync the entire filesystem. + +# Usage Examples + +## [[glibc]] + + * `sync` + + `file_syncfs ("/", false, true)`-- invoke it on the process' root directory + (`INIT_PORT_CRDIR`), don't wait for completion, do synchronize child + filesystems. |