We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents a14853d + 3ab4cf9 commit ae2c94fCopy full SHA for ae2c94f
src/unix/bsd/apple/mod.rs
@@ -4990,6 +4990,18 @@ pub const VOL_CAP_INT_RENAME_SWAP: attrgroup_t = 0x00040000;
4990
pub const VOL_CAP_INT_RENAME_EXCL: attrgroup_t = 0x00080000;
4991
pub const VOL_CAP_INT_RENAME_OPENFAIL: attrgroup_t = 0x00100000;
4992
4993
+// <proc.h>
4994
+/// Process being created by fork.
4995
+pub const SIDL: u32 = 1;
4996
+/// Currently runnable.
4997
+pub const SRUN: u32 = 2;
4998
+/// Sleeping on an address.
4999
+pub const SSLEEP: u32 = 3;
5000
+/// Process debugging or suspension.
5001
+pub const SSTOP: u32 = 4;
5002
+/// Awaiting collection by parent.
5003
+pub const SZOMB: u32 = 5;
5004
+
5005
cfg_if! {
5006
if #[cfg(libc_const_extern_fn)] {
5007
const fn __DARWIN_ALIGN32(p: usize) -> usize {
0 commit comments