diff options
author | phk <phk@FreeBSD.org> | 2001-03-28 18:21:54 +0000 |
---|---|---|
committer | phk <phk@FreeBSD.org> | 2001-03-28 18:21:54 +0000 |
commit | 92a906e563fc2ef947972498681d8b335d7c4366 (patch) | |
tree | a793db3648518ea8148551ebf41d11cc434f2d21 /lib/libc/sys/statfs.2 | |
parent | aaa134a8861012bf702a2633646a3d19b755de1c (diff) | |
download | FreeBSD-src-92a906e563fc2ef947972498681d8b335d7c4366.zip FreeBSD-src-92a906e563fc2ef947972498681d8b335d7c4366.tar.gz |
The f_syncreads and f_asyncreads entries are missing from the man page.
This also tidies up the formatting a bit and omits all the padding
entries.
PR: 25834
Submitted by: Tony Finch <dot@dotat.at>
Diffstat (limited to 'lib/libc/sys/statfs.2')
-rw-r--r-- | lib/libc/sys/statfs.2 | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/lib/libc/sys/statfs.2 b/lib/libc/sys/statfs.2 index 589940f..3bc174a 100644 --- a/lib/libc/sys/statfs.2 +++ b/lib/libc/sys/statfs.2 @@ -67,7 +67,6 @@ typedef struct fsid { int32_t val[2]; } fsid_t; /* file system id type */ #define MNAMELEN 90 /* length of buffer for returned name */ struct statfs { -long f_spare2; /* placeholder */ long f_bsize; /* fundamental file system block size */ long f_iosize; /* optimal transfer block size */ long f_blocks; /* total data blocks in file system */ @@ -82,8 +81,10 @@ int f_flags; /* copy of mount flags */ long f_syncwrites; /* count of sync writes since mount */ long f_asyncwrites; /* count of async writes since mount */ char f_fstypename[MFSNAMELEN];/* fs type name */ -char f_mntonname[MNAMELEN]; /* mount point */ -char f_mntfromname[MNAMELEN]; /* mounted filesystem */ +char f_mntonname[MNAMELEN]; /* mount point */ +long f_syncreads; /* count of sync reads since mount */ +long f_asyncreads; /* count of async reads since mount */ +char f_mntfromname[MNAMELEN]; /* mounted filesystem */ }; .Ed The flags that may be returned include: |