File tree Expand file tree Collapse file tree 2 files changed +8
-0
lines changed
src/unix/linux_like/linux/musl Expand file tree Collapse file tree 2 files changed +8
-0
lines changed Original file line number Diff line number Diff line change @@ -47,6 +47,9 @@ XDP_UMEM_PGOFF_COMPLETION_RING
47
47
XSK_UNALIGNED_BUF_OFFSET_SHIFT
48
48
XSK_UNALIGNED_BUF_ADDR_MASK
49
49
XDP_PKT_CONTD
50
+ CLONE_NEWTIME
51
+ CLONE_CLEAR_SIGHAND
52
+ CLONE_INTO_CGROUP
50
53
adjtimex
51
54
aio_cancel
52
55
aio_error
Original file line number Diff line number Diff line change @@ -810,6 +810,11 @@ pub const XSK_UNALIGNED_BUF_ADDR_MASK: ::c_ulonglong = (1 << XSK_UNALIGNED_BUF_O
810
810
811
811
pub const XDP_PKT_CONTD : :: __u32 = 1 << 0 ;
812
812
813
+ // linux/sched.h
814
+ pub const CLONE_NEWTIME : :: c_int = 0x80 ;
815
+ pub const CLONE_CLEAR_SIGHAND : :: c_int = 0x100000000 ;
816
+ pub const CLONE_INTO_CGROUP : :: c_int = 0x200000000 ;
817
+
813
818
cfg_if ! {
814
819
if #[ cfg( target_arch = "s390x" ) ] {
815
820
pub const POSIX_FADV_DONTNEED : :: c_int = 6 ;
You can’t perform that action at this time.
0 commit comments