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.
1 parent b1c89cc commit d099c99Copy full SHA for d099c99
libc-test/semver/android.txt
@@ -1776,6 +1776,7 @@ SCHED_DEADLINE
1776
SCHED_FIFO
1777
SCHED_IDLE
1778
SCHED_NORMAL
1779
+SCHED_RESET_ON_FORK
1780
SCHED_RR
1781
SCM_CREDENTIALS
1782
SCM_RIGHTS
src/unix/linux_like/android/mod.rs
@@ -2424,6 +2424,8 @@ pub const SCHED_BATCH: ::c_int = 3;
2424
pub const SCHED_IDLE: ::c_int = 5;
2425
pub const SCHED_DEADLINE: ::c_int = 6;
2426
2427
+pub const SCHED_RESET_ON_FORK: ::c_int = 0x40000000;
2428
+
2429
// bits/seek_constants.h
2430
pub const SEEK_DATA: ::c_int = 3;
2431
pub const SEEK_HOLE: ::c_int = 4;
0 commit comments