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 /hurd/interface/fs/13.mdwn | |
parent | 8b4e64fe1d1cd119a266c5711d5f12fb19bc77e3 (diff) |
Add fdatasync, fsync, sync example from glibc.
Diffstat (limited to 'hurd/interface/fs/13.mdwn')
-rw-r--r-- | hurd/interface/fs/13.mdwn | 16 |
1 files changed, 16 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. |