diff options
author | 1997-11-06 20:34:49 +0000 | |
---|---|---|
committer | 1997-11-06 20:34:49 +0000 | |
commit | a5c3bd76093a3ea3c7b48c84db9fd188f2108fbb (patch) | |
tree | 70bd4b259c34c660c7cf729056916b4fe0cea6d3 | |
parent | Added support for enabling soft updates. (diff) | |
download | wireguard-openbsd-a5c3bd76093a3ea3c7b48c84db9fd188f2108fbb.tar.xz wireguard-openbsd-a5c3bd76093a3ea3c7b48c84db9fd188f2108fbb.zip |
Document f_syncwrites/f_asyncwrites.
-rw-r--r-- | lib/libc/sys/statfs.2 | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/lib/libc/sys/statfs.2 b/lib/libc/sys/statfs.2 index 0ae57e68c1f..7cc8fd5df5c 100644 --- a/lib/libc/sys/statfs.2 +++ b/lib/libc/sys/statfs.2 @@ -73,7 +73,9 @@ struct statfs { long f_ffree; /* free file nodes in fs */ fsid_t f_fsid; /* file system id (super-user only) */ uid_t f_owner; /* user that mounted the file system */ - long f_spare[4]; /* spare for later */ + long f_syncwrites; /* count of sync writes since mount */ + long f_asyncwrites; /* count of async writes since mount */ + long f_spare[2]; /* spare for later */ char f_fstypename[MFSNAMELEN]; /* fs type name */ char f_mntonname[MNAMELEN]; /* directory on which mounted */ char f_mntfromname[MNAMELEN]; /* mounted file system */ |