From 7241dcecea769b46a1dffde8c482d43c74e072f7 Mon Sep 17 00:00:00 2001 From: Kirk McKusick Date: Tue, 17 Oct 1989 23:14:57 -0800 Subject: [PATCH] date and time created 89/10/17 15:14:57 by mckusick SCCS-vsn: lib/libc/gen/getmntinfo.3 6.1 --- usr/src/lib/libc/gen/getmntinfo.3 | 52 +++++++++++++++++++++++++++++++ 1 file changed, 52 insertions(+) create mode 100644 usr/src/lib/libc/gen/getmntinfo.3 diff --git a/usr/src/lib/libc/gen/getmntinfo.3 b/usr/src/lib/libc/gen/getmntinfo.3 new file mode 100644 index 0000000000..35002e8a0d --- /dev/null +++ b/usr/src/lib/libc/gen/getmntinfo.3 @@ -0,0 +1,52 @@ +.\" 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.1 (Berkeley) %G% +.\" +.TH GETMNTINFO 3 "" +.UC 7 +.SH NAME +getmntinfo - get information about mounted file systems +.SH SYNOPSIS +.nf +.ft B +#include +#include +.LP +.ft B +int getmntinfo(mntbufp) +struct statfs **mntbufp; +.fi +.ft R +.SH DESCRIPTION +.I Getmntinfo +returns an array of +.I statfs +structures describing each currently mounted file system (see +.IR statfs (2)). +.SH DIAGNOSTICS +On successful completion, +.I getmntinfo +returns a count of the number of elements in the array. +The pointer to the array is stored into +.IR mntbufp . +Otherwise, zero is returned and +.I mntbufp +is unmodified. +.SH BUGS +All information is contained in a static area, +so it must be copied if it is to be saved. +.SH SEE ALSO +getfsstat(2), statfs(2), mount(2), mount(8) -- 2.20.1