We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 24c3b90 + 1b10d9e commit 54fca81Copy full SHA for 54fca81
libc-test/semver/apple.txt
@@ -1108,6 +1108,9 @@ SAE_ASSOCID_ANY
1108
SAE_CONNID_ALL
1109
SAE_CONNID_ANY
1110
SCALE_PPM
1111
+SCHED_OTHER
1112
+SCHED_FIFO
1113
+SCHED_RR
1114
SCM_CREDS
1115
SCM_RIGHTS
1116
SCM_TIMESTAMP
src/unix/bsd/apple/mod.rs
@@ -3471,6 +3471,10 @@ pub const FD_SETSIZE: usize = 1024;
3471
3472
pub const ST_NOSUID: ::c_ulong = 2;
3473
3474
+pub const SCHED_OTHER: ::c_int = 1;
3475
+pub const SCHED_FIFO: ::c_int = 4;
3476
+pub const SCHED_RR: ::c_int = 2;
3477
+
3478
pub const EVFILT_READ: i16 = -1;
3479
pub const EVFILT_WRITE: i16 = -2;
3480
pub const EVFILT_AIO: i16 = -3;
0 commit comments