xref: /original-bsd/lib/libc/gen/getmntinfo.3 (revision abd50c55)
Copyright (c) 1989 The Regents of the University of California.
All rights reserved.

Redistribution and use in source and binary forms are permitted
provided that the above copyright notice and this paragraph are
duplicated in all such forms and that any documentation,
advertising materials, and other materials related to such
distribution and use acknowledge that the software was developed
by the University of California, Berkeley. The name of the
University may not be used to endorse or promote products derived
from this software without specific prior written permission.
THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR
IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED
WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.

@(#)getmntinfo.3 6.2 (Berkeley) 03/06/90

GETMNTINFO 3 ""
C 7
NAME
getmntinfo - get information about mounted file systems
SYNOPSIS
#include <sys/types.h>
#include <sys/mount.h>

int getmntinfo(mntbufp, flags) struct statfs **mntbufp; int flags

DESCRIPTION
Getmntinfo returns an array of statfs structures describing each currently mounted file system (see statfs (2)).
DIAGNOSTICS
On successful completion, getmntinfo returns a count of the number of elements in the array. The pointer to the array is stored into mntbufp . Otherwise, zero is returned and mntbufp is unmodified.

Getmntinfo passes its flags parameter transparently to getfsstat (2).

BUGS
All information is contained in a static area, so it must be copied if it is to be saved.
SEE ALSO
getfsstat(2), statfs(2), mount(2), mount(8)