|
NAMEfhopen , fhstat ,
fhstatfs —
access file via file handle
LIBRARYStandard C Library (libc, -lc)SYNOPSIS#include <sys/param.h>
#include <sys/mount.h>
#include <sys/stat.h>
int
int
int
DESCRIPTIONThese system calls provide a means to access a file given the file handle fhp. As this method bypasses directory access restrictions, these calls are restricted to the superuser.The The RETURN VALUESUpon successful completion,fhopen () returns the file
descriptor for the opened file; otherwise the value -1 is returned and the
global variable errno is set to indicate the error.
ERRORSIn addition to the errors returned by open(2), fstat(2), and fstatfs(2) respectively,fhopen (),
fhstat (), and fhstatfs () will
return
SEE ALSOfstat(2), fstatfs(2), getfh(2), open(2)HISTORYThefhopen (), fhstat (), and
fhstatfs () system calls first appeared in
NetBSD 1.5 and were adapted to
FreeBSD 4.0 by Alfred
Perlstein.
AUTHORSThis manual page was written by William Studenmund for NetBSD.
Visit the GSP FreeBSD Man Page Interface. |