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
24
24
KEYCTL_CAPS1_NS_KEYRING_NAME
25
25
KEYCTL_CAPS1_NS_KEY_TAG
26
26
KEYCTL_MOVE
27
+ MADV_SOFT_OFFLINE
27
28
MAP_SYNC
28
29
NFT_MSG_DELOBJ
29
30
NFT_MSG_GETOBJ
Original file line number Diff line number Diff line change @@ -246,6 +246,7 @@ pub const O_DIRECT: c_int = 16384;
246
246
pub const O_DIRECTORY: c_int = 65536;
247
247
pub const O_LARGEFILE: c_int = 0o0100000;
248
248
pub const O_NOFOLLOW: c_int = 131072;
249
+ pub const MADV_SOFT_OFFLINE: c_int = 101;
249
250
pub const MAP_HUGETLB: c_int = 262144;
250
251
pub const MAP_LOCKED: c_int = 8192;
251
252
pub 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;
572
572
pub const SOCK_STREAM: c_int = 1;
573
573
pub const SOCK_DGRAM: c_int = 2;
574
574
575
+ pub const MADV_SOFT_OFFLINE: c_int = 101;
575
576
pub const MAP_ANON: c_int = 0x0020;
576
577
pub const MAP_GROWSDOWN: c_int = 0x0100;
577
578
pub const MAP_DENYWRITE: c_int = 0x0800;
You can’t perform that action at this time.
0 commit comments