Query: fhopen
OS: osx
Section: 2
Format: Original Unix Latex Style Formatted with HTML and a Horizontal Scroll Bar
FHOPEN(2) BSD System Calls Manual FHOPEN(2)NAMEfhopen -- open a file by file handleSYNOPSIS#include <sys/types.h> #include <sys/mount.h> int fhopen(const struct fhandle *fhp, int flags);DESCRIPTIONThe file specified by the given file handle is opened for reading and/or writing, as specified by the argument flags; the file descriptor is returned to the calling process. This system call is restricted to the super-user and is used by an NFS server's rpc.lockd(8) daemon to open a file in order to perform lock- ing operations on it.RETURN VALUESUpon successful completion, a value of 0 is returned. Otherwise, -1 is returned and the global variable errno is set to indicate the error.ERRORSfhopen() fails if one or more of the following are true: [ESTALE] The file handle no longer refers to a valid, NFS-exported object. [EPERM] The caller is not the super-user. [EINVAL] There was a problem with the value of one of the arguments. [EFAULT] fhp points to an invalid address.SEE ALSOrpc.lockd(8)BSDJanuary 9, 2007 BSD
Related Man Pages |
---|
fhstatfs(2) - freebsd |
fhstatfs(2) - debian |
nfsclnt(2) - osx |
fhopen(2) - freebsd |
fhstat(2) - freebsd |
Similar Topics in the Unix Linux Community |
---|
Recreating a deleted hardlink to a file if I know the inode number |