*** UNIX MANUAL PAGE BROWSER ***

A Nergahak database for man pages research.

Navigation

Directory Browser

1Browse 4.4BSD4.4BSD
1Browse Digital UNIXDigital UNIX 4.0e
1Browse FreeBSDFreeBSD 14.3
1Browse MINIXMINIX 3.4.0rc6-d5e4fc0
1Browse NetBSDNetBSD 10.1
1Browse OpenBSDOpenBSD 7.7
1Browse UNIX v7Version 7 UNIX
1Browse UNIX v10Version 10 UNIX

Manual Page Search

Manual Page Result

0 Command: getfsstat | Section: 2 | Source: FreeBSD | File: getfsstat.2.gz
GETFSSTAT(2) FreeBSD System Calls Manual GETFSSTAT(2) NAME getfsstat - get list of all mounted file systems LIBRARY Standard C Library (libc, -lc) SYNOPSIS #include <sys/param.h> #include <sys/ucred.h> #include <sys/mount.h> int getfsstat(struct statfs *buf, long bufsize, int mode); DESCRIPTION The getfsstat() system call returns information about all mounted file systems. The buf argument is a pointer to statfs structures, as described in statfs(2). Fields that are undefined for a particular file system are set to -1. The buffer is filled with an array of statfs structures, one for each mounted file system up to the byte count specified by bufsize. Note, the bufsize argument is the number of bytes that buf can hold, not the count of statfs structures it will hold. If buf is given as NULL, getfsstat() returns just the number of mounted file systems. Normally mode should be specified as MNT_WAIT. If mode is set to MNT_NOWAIT, getfsstat() will return the information it has available without requesting an update from each file system. Thus, some of the information will be out of date, but getfsstat() will not block waiting for information from a file system that is unable to respond. It will also skip any file system that is in the process of being unmounted, even if the unmount would eventually fail. RETURN VALUES Upon successful completion, the number of statfs structures is returned. Otherwise, -1 is returned and the global variable errno is set to indicate the error. ERRORS The getfsstat() system call fails if one or more of the following are true: [EFAULT] The buf argument points to an invalid address. [EINVAL] mode is set to a value other than MNT_WAIT or MNT_NOWAIT. [EIO] An I/O error occurred while reading from or writing to the file system. [EINTEGRITY] Corrupted data was detected while reading from the file system. SEE ALSO statfs(2), fstab(5), mount(8) HISTORY The getfsstat() system call first appeared in 4.4BSD. FreeBSD 14.1-RELEASE-p8 March 30, 2020 FreeBSD 14.1-RELEASE-p8

Navigation Options