We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8c88d9a commit a3ca238Copy full SHA for a3ca238
libc-test/semver/freebsd.txt
@@ -264,6 +264,7 @@ CLOCK_UPTIME
264
CLOCK_UPTIME_FAST
265
CLOCK_UPTIME_PRECISE
266
CLOCK_VIRTUAL
267
+CLOSE_RANGE_CLOEXEC
268
CMGROUP_MAX
269
CMSG_DATA
270
CMSG_FIRSTHDR
src/unix/bsd/freebsdlike/freebsd/mod.rs
@@ -4968,6 +4968,10 @@ pub const TFD_CLOEXEC: ::c_int = O_CLOEXEC;
4968
pub const TFD_TIMER_ABSTIME: ::c_int = 0x01;
4969
pub const TFD_TIMER_CANCEL_ON_SET: ::c_int = 0x02;
4970
4971
+// sys/unistd.h
4972
+
4973
+pub const CLOSE_RANGE_CLOEXEC: ::c_uint = 1 << 2;
4974
4975
cfg_if! {
4976
if #[cfg(libc_const_extern_fn)] {
4977
pub const fn MAP_ALIGNED(a: ::c_int) -> ::c_int {
0 commit comments