File tree Expand file tree Collapse file tree 2 files changed +9
-0
lines changed
src/unix/bsd/netbsdlike/netbsd Expand file tree Collapse file tree 2 files changed +9
-0
lines changed Original file line number Diff line number Diff line change @@ -792,6 +792,10 @@ RUN_LVL
792
792
RUSAGE_CHILDREN
793
793
RUSAGE_SELF
794
794
SCALE_PPM
795
+ SCHED_FIFO
796
+ SCHED_NONE
797
+ SCHED_OTHER
798
+ SCHED_RR
795
799
SCM_CREDS
796
800
SCM_RIGHTS
797
801
SCM_TIMESTAMP
Original file line number Diff line number Diff line change @@ -1532,6 +1532,11 @@ pub const PTHREAD_MUTEX_ERRORCHECK: ::c_int = 1;
1532
1532
pub const PTHREAD_MUTEX_RECURSIVE : :: c_int = 2 ;
1533
1533
pub const PTHREAD_MUTEX_DEFAULT : :: c_int = PTHREAD_MUTEX_NORMAL ;
1534
1534
1535
+ pub const SCHED_NONE : :: c_int = -1 ;
1536
+ pub const SCHED_OTHER : :: c_int = 0 ;
1537
+ pub const SCHED_FIFO : :: c_int = 1 ;
1538
+ pub const SCHED_RR : :: c_int = 2 ;
1539
+
1535
1540
pub const EVFILT_AIO : u32 = 2 ;
1536
1541
pub const EVFILT_PROC : u32 = 4 ;
1537
1542
pub const EVFILT_READ : u32 = 0 ;
You can’t perform that action at this time.
0 commit comments