File tree 2 files changed +15
-0
lines changed
src/unix/bsd/netbsdlike/netbsd
2 files changed +15
-0
lines changed Original file line number Diff line number Diff line change @@ -740,6 +740,13 @@ POSIX_MADV_NORMAL
740
740
POSIX_MADV_RANDOM
741
741
POSIX_MADV_SEQUENTIAL
742
742
POSIX_MADV_WILLNEED
743
+ POSIX_SPAWN_RESETIDS
744
+ POSIX_SPAWN_RETURNERROR
745
+ POSIX_SPAWN_SETPGROUP
746
+ POSIX_SPAWN_SETSCHEDPARAM
747
+ POSIX_SPAWN_SETSCHEDULER
748
+ POSIX_SPAWN_SETSIGDEP
749
+ POSIX_SPAWN_SETSIGMASK
743
750
PTHREAD_CREATE_DETACHED
744
751
PTHREAD_CREATE_JOINABLE
745
752
PTHREAD_MUTEX_DEFAULT
Original file line number Diff line number Diff line change @@ -1957,6 +1957,14 @@ pub const PT_GET_EVENT_MASK: ::c_int = 17;
1957
1957
pub const PT_GET_PROCESS_STATE : :: c_int = 18 ;
1958
1958
pub const PT_FIRSTMACH : :: c_int = 32 ;
1959
1959
1960
+ pub const POSIX_SPAWN_RESETIDS : :: c_int = 0x01 ;
1961
+ pub const POSIX_SPAWN_SETPGROUP : :: c_int = 0x02 ;
1962
+ pub const POSIX_SPAWN_SETSCHEDPARAM : :: c_int = 0x04 ;
1963
+ pub const POSIX_SPAWN_SETSCHEDULER : :: c_int = 0x08 ;
1964
+ pub const POSIX_SPAWN_SETSIGDEF : :: c_int = 0x10 ;
1965
+ pub const POSIX_SPAWN_SETSIGMASK : :: c_int = 0x20 ;
1966
+ pub const POSIX_SPAWN_RETURNERROR : :: c_int = 0x40 ;
1967
+
1960
1968
// Flags for chflags(2)
1961
1969
pub const SF_SNAPSHOT : :: c_ulong = 0x00200000 ;
1962
1970
pub const SF_LOG : :: c_ulong = 0x00400000 ;
You can’t perform that action at this time.
0 commit comments