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.
1 parent 0b758af commit 3ab4cf9Copy full SHA for 3ab4cf9
src/unix/bsd/apple/mod.rs
@@ -4916,6 +4916,18 @@ pub const VOL_CAP_INT_RENAME_SWAP: attrgroup_t = 0x00040000;
4916
pub const VOL_CAP_INT_RENAME_EXCL: attrgroup_t = 0x00080000;
4917
pub const VOL_CAP_INT_RENAME_OPENFAIL: attrgroup_t = 0x00100000;
4918
4919
+// <proc.h>
4920
+/// Process being created by fork.
4921
+pub const SIDL: u32 = 1;
4922
+/// Currently runnable.
4923
+pub const SRUN: u32 = 2;
4924
+/// Sleeping on an address.
4925
+pub const SSLEEP: u32 = 3;
4926
+/// Process debugging or suspension.
4927
+pub const SSTOP: u32 = 4;
4928
+/// Awaiting collection by parent.
4929
+pub const SZOMB: u32 = 5;
4930
+
4931
cfg_if! {
4932
if #[cfg(libc_const_extern_fn)] {
4933
const fn __DARWIN_ALIGN32(p: usize) -> usize {
0 commit comments