File tree Expand file tree Collapse file tree 2 files changed +21
-0
lines changed
src/unix/linux_like/linux/musl Expand file tree Collapse file tree 2 files changed +21
-0
lines changed Original file line number Diff line number Diff line change 55AIO_ALLDONE
66AIO_CANCELED
77AIO_NOTCANCELED
8+ BOOT_TIME
9+ DEAD_PROCESS
810Elf32_Chdr
911Elf64_Chdr
12+ EMPTY
13+ INIT_PROCESS
1014LIO_NOP
1115LIO_NOWAIT
1216LIO_READ
1317LIO_WAIT
1418LIO_WRITE
19+ LOGIN_PROCESS
1520MPOL_BIND
1621MPOL_DEFAULT
1722MPOL_INTERLEAVE
1823MPOL_LOCAL
1924MPOL_PREFERRED
25+ NEW_TIME
26+ OLD_TIME
2027PF_IB
2128PF_MPLS
2229PF_XDP
2330PIDFD_NONBLOCK
2431PR_SET_VMA
2532PR_SET_VMA_ANON_NAME
33+ RUN_LVL
2634RWF_APPEND
2735RWF_DSYNC
2836RWF_HIPRI
2937RWF_NOWAIT
3038RWF_SYNC
3139SOL_XDP
40+ USER_PROCESS
3241XDP_COPY
3342XDP_MMAP_OFFSETS
3443XDP_OPTIONS
Original file line number Diff line number Diff line change @@ -628,6 +628,18 @@ pub const MAP_HUGE_16GB: ::c_int = 34 << MAP_HUGE_SHIFT;
628628
629629pub const MS_RMT_MASK : :: c_ulong = 0x02800051 ;
630630
631+ // include/utmpx.h
632+ pub const EMPTY : :: c_short = 0 ;
633+ pub const RUN_LVL : :: c_short = 1 ;
634+ pub const BOOT_TIME : :: c_short = 2 ;
635+ pub const NEW_TIME : :: c_short = 3 ;
636+ pub const OLD_TIME : :: c_short = 4 ;
637+ pub const INIT_PROCESS : :: c_short = 5 ;
638+ pub const LOGIN_PROCESS : :: c_short = 6 ;
639+ pub const USER_PROCESS : :: c_short = 7 ;
640+ pub const DEAD_PROCESS : :: c_short = 8 ;
641+ // musl does not define ACCOUNTING
642+
631643pub const SFD_CLOEXEC : :: c_int = 0x080000 ;
632644
633645pub const NCCS : usize = 32 ;
You can’t perform that action at this time.
0 commit comments