File tree Expand file tree Collapse file tree 3 files changed +3
-0
lines changed
src/unix/linux_like/linux/musl Expand file tree Collapse file tree 3 files changed +3
-0
lines changed Original file line number Diff line number Diff line change @@ -24,6 +24,7 @@ KEYCTL_CAPS0_RESTRICT_KEYRING
2424KEYCTL_CAPS1_NS_KEYRING_NAME
2525KEYCTL_CAPS1_NS_KEY_TAG
2626KEYCTL_MOVE
27+ MADV_SOFT_OFFLINE
2728MAP_SYNC
2829NFT_MSG_DELOBJ
2930NFT_MSG_GETOBJ
Original file line number Diff line number Diff line change @@ -246,6 +246,7 @@ pub const O_DIRECT: c_int = 16384;
246246pub const O_DIRECTORY : c_int = 65536 ;
247247pub const O_LARGEFILE : c_int = 0o0100000 ;
248248pub const O_NOFOLLOW : c_int = 131072 ;
249+ pub const MADV_SOFT_OFFLINE : c_int = 101 ;
249250pub const MAP_HUGETLB : c_int = 262144 ;
250251pub const MAP_LOCKED : c_int = 8192 ;
251252pub const MAP_NORESERVE : c_int = 16384 ;
Original file line number Diff line number Diff line change @@ -572,6 +572,7 @@ pub const POLLWRBAND: c_short = 0x200;
572572pub const SOCK_STREAM : c_int = 1 ;
573573pub const SOCK_DGRAM : c_int = 2 ;
574574
575+ pub const MADV_SOFT_OFFLINE : c_int = 101 ;
575576pub const MAP_ANON : c_int = 0x0020 ;
576577pub const MAP_GROWSDOWN : c_int = 0x0100 ;
577578pub const MAP_DENYWRITE : c_int = 0x0800 ;
You can’t perform that action at this time.
0 commit comments