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
792792RUSAGE_CHILDREN
793793RUSAGE_SELF
794794SCALE_PPM
795+ SCHED_FIFO
796+ SCHED_NONE
797+ SCHED_OTHER
798+ SCHED_RR
795799SCM_CREDS
796800SCM_RIGHTS
797801SCM_TIMESTAMP
Original file line number Diff line number Diff line change @@ -1532,6 +1532,11 @@ pub const PTHREAD_MUTEX_ERRORCHECK: ::c_int = 1;
15321532pub const PTHREAD_MUTEX_RECURSIVE : :: c_int = 2 ;
15331533pub const PTHREAD_MUTEX_DEFAULT : :: c_int = PTHREAD_MUTEX_NORMAL ;
15341534
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+
15351540pub const EVFILT_AIO : u32 = 2 ;
15361541pub const EVFILT_PROC : u32 = 4 ;
15371542pub const EVFILT_READ : u32 = 0 ;
You can’t perform that action at this time.
0 commit comments