diff --git a/src/unix/bsd/apple/mod.rs b/src/unix/bsd/apple/mod.rs index 3348a7a8af457..48159d23430d5 100644 --- a/src/unix/bsd/apple/mod.rs +++ b/src/unix/bsd/apple/mod.rs @@ -4916,6 +4916,18 @@ pub const VOL_CAP_INT_RENAME_SWAP: attrgroup_t = 0x00040000; pub const VOL_CAP_INT_RENAME_EXCL: attrgroup_t = 0x00080000; pub const VOL_CAP_INT_RENAME_OPENFAIL: attrgroup_t = 0x00100000; +// +/// Process being created by fork. +pub const SIDL: i32 = 1; +/// Currently runnable. +pub const SRUN: i32 = 2; +/// Sleeping on an address. +pub const SSLEEP: i32 = 3; +/// Process debugging or suspension. +pub const SSTOP: i32 = 4; +/// Awaiting collection by parent. +pub const SZOMB: i32 = 5; + cfg_if! { if #[cfg(libc_const_extern_fn)] { const fn __DARWIN_ALIGN32(p: usize) -> usize {