struct F [src]
Members
- DUPFD (Constant)
- GETFD (Constant)
- GETFL (Constant)
- GETLK (Constant)
- GETOWN (Constant)
- GETOWN_EX (Constant)
- GETOWNER_UIDS (Constant)
- GETSIG (Constant)
- RDLCK (Constant)
- SETFD (Constant)
- SETFL (Constant)
- SETLK (Constant)
- SETLKW (Constant)
- SETOWN (Constant)
- SETOWN_EX (Constant)
- SETSIG (Constant)
- UNLCK (Constant)
- WRLCK (Constant)
Source
 pub const F = struct {
    pub const DUPFD = 0;
    pub const GETFD = 1;
    pub const SETFD = 2;
    pub const GETFL = 3;
    pub const SETFL = 4;
    pub const SETOWN = 8;
    pub const GETOWN = 9;
    pub const SETSIG = 10;
    pub const GETSIG = 11;
    pub const GETLK = 12;
    pub const SETLK = 13;
    pub const SETLKW = 14;
    pub const SETOWN_EX = 15;
    pub const GETOWN_EX = 16;
    pub const GETOWNER_UIDS = 17;
    pub const RDLCK = 0;
    pub const WRLCK = 1;
    pub const UNLCK = 2;
}