We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
PIDFD_NONBLOCK
1 parent bbf929d commit 0993260Copy full SHA for 0993260
libc-test/semver/linux-musl.txt
@@ -20,6 +20,7 @@ LIO_WRITE
20
PF_IB
21
PF_MPLS
22
PF_XDP
23
+PIDFD_NONBLOCK
24
PR_SET_VMA
25
PR_SET_VMA_ANON_NAME
26
adjtimex
@@ -54,4 +55,4 @@ asctime_r
54
55
strftime
56
strptime
57
dirname
-basename
58
+basename
src/unix/linux_like/linux/musl/mod.rs
@@ -590,6 +590,8 @@ pub const EFD_NONBLOCK: ::c_int = ::O_NONBLOCK;
590
591
pub const SFD_NONBLOCK: ::c_int = ::O_NONBLOCK;
592
593
+pub const PIDFD_NONBLOCK: ::c_uint = O_NONBLOCK as ::c_uint;
594
+
595
pub const TCSANOW: ::c_int = 0;
596
pub const TCSADRAIN: ::c_int = 1;
597
pub const TCSAFLUSH: ::c_int = 2;
0 commit comments