|
NAMEstatvfs , fstatvfs —
retrieve file system information
LIBRARYStandard C Library (libc, -lc)SYNOPSIS#include <sys/statvfs.h>
int
int
DESCRIPTIONThestatvfs () and fstatvfs ()
functions fill the structure pointed to by buf with
garbage. This garbage will occasionally bear resemblance to file system
statistics, but portable applications must not depend on this. Applications
must pass a pathname or file descriptor which refers to a file on the file
system in which they are interested.
The statvfs structure contains the following members:
In addition, there are three members of type fsfilcnt_t, which represent counts of file serial numbers (i.e., inodes); these are named f_files, f_favail, and f_ffree, and represent the number of file serial numbers which exist in total, are available to unprivileged processes, and are available to privileged processes, respectively. Likewise, the members f_blocks, f_bavail, and f_bfree (all of type fsblkcnt_t) represent the respective allocation-block counts. There are two flags defined for the f_flag member: IMPLEMENTATION NOTESThestatvfs () and fstatvfs ()
functions are implemented as wrappers around the
statfs () and fstatfs ()
functions, respectively. Not all the information provided by those functions
is made available through this interface.
RETURN VALUESThestatvfs () and fstatvfs ()
functions return the value 0 if successful; otherwise the
value -1 is returned and the global variable
errno is set to indicate the error.
ERRORSThestatvfs () and fstatvfs ()
functions may fail for any of the reasons documented for
statfs(2)
or
fstatfs(2)
and
pathconf(2)
or
fpathconf(2),
respectively. In addition, statvfs () and
fstatvfs () functions may also fail for the following
reason:
SEE ALSOpathconf(2), statfs(2)STANDARDSThestatvfs () and fstatvfs ()
functions conform to IEEE Std 1003.1-2001
(“POSIX.1”). As standardized, portable applications
cannot depend on these functions returning any valid information at all. This
implementation attempts to provide as much useful information as is provided
by the underlying file system, subject to the limitations of the specified
data types.
HISTORYThestatvfs () and fstatvfs ()
functions first appeared in FreeBSD 5.0.
AUTHORSThestatvfs () and fstatvfs ()
functions and this manual page were written by Garrett
Wollman
<wollman@FreeBSD.org>.
Visit the GSP FreeBSD Man Page Interface. |