File tree Expand file tree Collapse file tree 2 files changed +15
-0
lines changed
src/unix/bsd/netbsdlike/netbsd Expand file tree Collapse file tree 2 files changed +15
-0
lines changed Original file line number Diff line number Diff line change @@ -740,6 +740,13 @@ POSIX_MADV_NORMAL
740740POSIX_MADV_RANDOM
741741POSIX_MADV_SEQUENTIAL
742742POSIX_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
743750PTHREAD_CREATE_DETACHED
744751PTHREAD_CREATE_JOINABLE
745752PTHREAD_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;
19571957pub const PT_GET_PROCESS_STATE : :: c_int = 18 ;
19581958pub const PT_FIRSTMACH : :: c_int = 32 ;
19591959
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+
19601968// Flags for chflags(2)
19611969pub const SF_SNAPSHOT : :: c_ulong = 0x00200000 ;
19621970pub const SF_LOG : :: c_ulong = 0x00400000 ;
You can’t perform that action at this time.
0 commit comments