struct POSIX_SPAWN [src]
Alias for std.c.darwin.POSIX_SPAWN
Members
- CLOEXEC_DEFAULT (Constant)
- DISABLE_ASLR (Constant)
- RESETIDS (Constant)
- RESLIDE (Constant)
- SETEXEC (Constant)
- SETPGROUP (Constant)
- SETSID (Constant)
- SETSIGDEF (Constant)
- SETSIGMASK (Constant)
- START_SUSPENDED (Constant)
Source
pub const POSIX_SPAWN = struct {
pub const RESETIDS = 0x0001;
pub const SETPGROUP = 0x0002;
pub const SETSIGDEF = 0x0004;
pub const SETSIGMASK = 0x0008;
pub const SETEXEC = 0x0040;
pub const START_SUSPENDED = 0x0080;
pub const DISABLE_ASLR = 0x0100;
pub const SETSID = 0x0400;
pub const RESLIDE = 0x0800;
pub const CLOEXEC_DEFAULT = 0x4000;
}