diff options
author | Todd C. Miller <millert@cvs.openbsd.org> | 1997-11-06 20:34:50 +0000 |
---|---|---|
committer | Todd C. Miller <millert@cvs.openbsd.org> | 1997-11-06 20:34:50 +0000 |
commit | 877f1f9594561fbc38282683c155244d3b0ffd59 (patch) | |
tree | 29b8dbc2481dd30323b3b4d31453efd0f8dfb787 /lib | |
parent | 05f603a9852e8da55679ee57cca1b7292f5bff40 (diff) |
Document f_syncwrites/f_asyncwrites.
Diffstat (limited to 'lib')
-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 */ |