The deprecated Mono.Posix namespace, use
Mono.Unix instead.
[Edit]
Remarks
This namespace provides functionality to access Posix/Unix features. It has been deprecated in favor of the new Mono.Unix namespace.
[Edit]
Classes
Type | Reason |
---|
Catalog | Documentation for this section has not yet been entered. |
PeerCred | Documentation for this section has not yet been entered. |
Syscall | The Syscall wrapper class makes it possible to execute the defined system calls. For more information on any of these system calls, the linux manual system (man) has exhaustive information on each syscall in section two: 'man 2 chdir' (or often 'man chdir(2)') for example would give information related to chdir, including error codes, which are in general not listed here. |
UnixEndPoint | A System.Net.EndPoint implementation for UNIX sockets as network addresses.. |
Structs
Type | Reason |
---|
Stat | Every file has a unique INODE data structure. Mono's managed representation is the Stat struct. the Syscall.stat and Syscall.lstat methods return the Stat struct as an output parameter. |
Delegates
Enumerations
Type | Reason |
---|
AccessMode | Represents the access mode of a task: read, write, execute or test if the file exists. |
FileMode | The FileMode enumeration describes file system modes (read,write,execute) as described in the POSIX standard |
OpenFlags | Mode with which the file will attempt to be opened. |
Signals | List of available signals. |
StatMode | Enumeration representing various stat mode bitmasks |
StatModeMasks | Bitmasks for various posix bit fields. |
WaitOptions | Wait options for the waitpid syscall method. |