Skip to content

Commit 7d615f0

Browse files
committed
Auto merge of #2983 - HarveyHunt:posix-spawn-setsid, r=JohnTitor
linux: Add POSIX_SPAWN_SETSID flag This flag allows the child process created by POSIX spawn to create a new session and become leader of a new process group. Expose the flag so that Rust code can use it.
2 parents 7665a00 + 36aa6ca commit 7d615f0

File tree

2 files changed

+2
-0
lines changed

2 files changed

+2
-0
lines changed

libc-test/semver/linux.txt

+1
Original file line numberDiff line numberDiff line change
@@ -1696,6 +1696,7 @@ POSIX_SPAWN_SETSCHEDULER
16961696
POSIX_SPAWN_SETSIGDEF
16971697
POSIX_SPAWN_SETSIGMASK
16981698
POSIX_SPAWN_USEVFORK
1699+
POSIX_SPAWN_SETSID
16991700
PROT_GROWSDOWN
17001701
PROT_GROWSUP
17011702
PR_CAPBSET_DROP

src/unix/linux_like/linux/mod.rs

+1
Original file line numberDiff line numberDiff line change
@@ -1593,6 +1593,7 @@ pub const POSIX_MADV_RANDOM: ::c_int = 1;
15931593
pub const POSIX_MADV_SEQUENTIAL: ::c_int = 2;
15941594
pub const POSIX_MADV_WILLNEED: ::c_int = 3;
15951595
pub const POSIX_SPAWN_USEVFORK: ::c_int = 64;
1596+
pub const POSIX_SPAWN_SETSID: ::c_int = 128;
15961597

15971598
pub const S_IEXEC: mode_t = 64;
15981599
pub const S_IWRITE: mode_t = 128;

0 commit comments

Comments
 (0)