We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 013ab57 commit e86e0c1Copy full SHA for e86e0c1
libc-test/semver/android.txt
@@ -1615,6 +1615,8 @@ POSIX_FADV_NORMAL
1615
POSIX_FADV_RANDOM
1616
POSIX_FADV_SEQUENTIAL
1617
POSIX_FADV_WILLNEED
1618
+PR_SET_VMA
1619
+PR_SET_VMA_ANON_NAME
1620
PRIO_MAX
1621
PRIO_MIN
1622
PRIO_PGRP
src/unix/linux_like/android/mod.rs
@@ -2438,6 +2438,10 @@ pub const PF_VSOCK: ::c_int = AF_VSOCK;
2438
pub const PROP_VALUE_MAX: ::c_int = 92;
2439
pub const PROP_NAME_MAX: ::c_int = 32;
2440
2441
+// sys/prctl.h
2442
+pub const PR_SET_VMA: ::c_int = 0x53564d41;
2443
+pub const PR_SET_VMA_ANON_NAME: ::c_int = 0;
2444
+
2445
f! {
2446
pub fn CMSG_NXTHDR(mhdr: *const msghdr,
2447
cmsg: *const cmsghdr) -> *mut cmsghdr {
0 commit comments