Fdstat
constructor(fsFiletype: Filetype, fsFlags: Fdflags, fsRightsBase: Rights, fsRightsInheriting: Rights)(source)
Parameters
fsFiletype
File type.
fsFlags
File descriptor flags.
fsRightsBase
Rights that apply to this file descriptor.
fsRightsInheriting
Maximum set of rights that may be installed on new file descriptors that are created through this file descriptor, e.g., through path_open
.
Definition:
(typename $fdstat
(record
;;; File type.
(field $fs_filetype $filetype)
;;; File descriptor flags.
(field $fs_flags $fdflags)
;;; Rights that apply to this file descriptor.
(field $fs_rights_base $rights)
;;; Maximum set of rights that may be installed on new file descriptors that
;;; are created through this file descriptor, e.g., through `path_open`.
(field $fs_rights_inheriting $rights)
)
)
Content copied to clipboard