We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 2af710a + 7877856 commit bcfd392Copy full SHA for bcfd392
libc-test/semver/linux.txt
@@ -1529,6 +1529,7 @@ POSIX_SPAWN_SETSCHEDPARAM
1529
POSIX_SPAWN_SETSCHEDULER
1530
POSIX_SPAWN_SETSIGDEF
1531
POSIX_SPAWN_SETSIGMASK
1532
+POSIX_SPAWN_USEVFORK
1533
PROT_GROWSDOWN
1534
PROT_GROWSUP
1535
PR_CAPBSET_DROP
src/unix/linux_like/linux/mod.rs
@@ -1330,6 +1330,7 @@ pub const POSIX_MADV_NORMAL: ::c_int = 0;
1330
pub const POSIX_MADV_RANDOM: ::c_int = 1;
1331
pub const POSIX_MADV_SEQUENTIAL: ::c_int = 2;
1332
pub const POSIX_MADV_WILLNEED: ::c_int = 3;
1333
+pub const POSIX_SPAWN_USEVFORK: ::c_int = 64;
1334
1335
pub const S_IEXEC: mode_t = 64;
1336
pub const S_IWRITE: mode_t = 128;
0 commit comments