*** 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: fuse_get_context | Section: 3 | Source: OpenBSD | File: fuse_get_context.3
FUSE_GET_CONTEXT(3) FreeBSD Library Functions Manual FUSE_GET_CONTEXT(3) NAME fuse_get_context - FUSE utility routine SYNOPSIS #include <fuse.h> struct fuse_context * fuse_get_context(void); DESCRIPTION fuse_get_context() returns a pointer to the structure fuse_context. This can be used by file systems to obtain information about the thread that is accessing the file system. The returned fuse_context is only valid during the lifetime of a FUSE operation. struct fuse_context { struct fuse * fuse; uid_t uid; /* effective user id */ gid_t gid; /* effective group id */ pid_t pid; /* thread id */ void *private_data; /* set by file system on mount */ mode_t umask; /* umask of the thread */ }; SEE ALSO fuse_new(3) STANDARDS The fuse_get_context() function conforms to FUSE 2.6. HISTORY The fuse_get_context() function first appeared in OpenBSD 5.4. AUTHORS Sylvestre Gallon <[email protected]> FreeBSD 14.1-RELEASE-p8 August 4, 2018 FreeBSD 14.1-RELEASE-p8

Navigation Options