File tree 2 files changed +21
-0
lines changed
src/unix/linux_like/linux/musl
2 files changed +21
-0
lines changed Original file line number Diff line number Diff line change 5
5
AIO_ALLDONE
6
6
AIO_CANCELED
7
7
AIO_NOTCANCELED
8
+ BOOT_TIME
9
+ DEAD_PROCESS
8
10
Elf32_Chdr
9
11
Elf64_Chdr
12
+ EMPTY
13
+ INIT_PROCESS
10
14
LIO_NOP
11
15
LIO_NOWAIT
12
16
LIO_READ
13
17
LIO_WAIT
14
18
LIO_WRITE
19
+ LOGIN_PROCESS
15
20
MPOL_BIND
16
21
MPOL_DEFAULT
17
22
MPOL_INTERLEAVE
18
23
MPOL_LOCAL
19
24
MPOL_PREFERRED
25
+ NEW_TIME
26
+ OLD_TIME
20
27
PF_IB
21
28
PF_MPLS
22
29
PF_XDP
23
30
PIDFD_NONBLOCK
24
31
PR_SET_VMA
25
32
PR_SET_VMA_ANON_NAME
33
+ RUN_LVL
26
34
RWF_APPEND
27
35
RWF_DSYNC
28
36
RWF_HIPRI
29
37
RWF_NOWAIT
30
38
RWF_SYNC
31
39
SOL_XDP
40
+ USER_PROCESS
32
41
XDP_COPY
33
42
XDP_MMAP_OFFSETS
34
43
XDP_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;
628
628
629
629
pub const MS_RMT_MASK : :: c_ulong = 0x02800051 ;
630
630
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
+
631
643
pub const SFD_CLOEXEC : :: c_int = 0x080000 ;
632
644
633
645
pub const NCCS : usize = 32 ;
You can’t perform that action at this time.
0 commit comments