Skip to content

Commit 71200cd

Browse files
committed
Auto merge of #3457 - devnexen:fbsd_rfsigshare, r=JohnTitor
adding RFSIGSHARE flag for FreeBSD's rfork
2 parents 9b2a163 + 86cc2b8 commit 71200cd

File tree

2 files changed

+2
-0
lines changed

2 files changed

+2
-0
lines changed

libc-test/semver/freebsd.txt

+1
Original file line numberDiff line numberDiff line change
@@ -1100,6 +1100,7 @@ RFLINUXTHPN
11001100
RFMEM
11011101
RFNOWAIT
11021102
RFPROC
1103+
RFSIGSHARE
11031104
RFSPAWN
11041105
RFTHREAD
11051106
RFTSIGZMB

src/unix/bsd/freebsdlike/freebsd/mod.rs

+1
Original file line numberDiff line numberDiff line change
@@ -3891,6 +3891,7 @@ pub const RFMEM: ::c_int = 32;
38913891
pub const RFNOWAIT: ::c_int = 64;
38923892
pub const RFCFDG: ::c_int = 4096;
38933893
pub const RFTHREAD: ::c_int = 8192;
3894+
pub const RFSIGSHARE: ::c_int = 16384;
38943895
pub const RFLINUXTHPN: ::c_int = 65536;
38953896
pub const RFTSIGZMB: ::c_int = 524288;
38963897
pub const RFSPAWN: ::c_int = 2147483648;

0 commit comments

Comments
 (0)