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.
2 parents da79cd0 + 33c5a2d commit 416b46bCopy full SHA for 416b46b
libc-test/semver/linux.txt
@@ -1671,6 +1671,9 @@ PTRACE_SETSIGINFO
1671
PTRACE_SINGLESTEP
1672
PTRACE_SYSCALL
1673
PTRACE_TRACEME
1674
+PT_HIOS
1675
+PT_LOPROC
1676
+PT_HIPROC
1677
PT_DYNAMIC
1678
PT_GNU_EH_FRAME
1679
PT_GNU_RELRO
src/unix/linux_like/linux/mod.rs
@@ -1766,6 +1766,9 @@ pub const PT_LOOS: u32 = 0x60000000;
1766
pub const PT_GNU_EH_FRAME: u32 = 0x6474e550;
1767
pub const PT_GNU_STACK: u32 = 0x6474e551;
1768
pub const PT_GNU_RELRO: u32 = 0x6474e552;
1769
+pub const PT_HIOS: u32 = 0x6fffffff;
1770
+pub const PT_LOPROC: u32 = 0x70000000;
1771
+pub const PT_HIPROC: u32 = 0x7fffffff;
1772
1773
// linux/if_ether.h
1774
pub const ETH_ALEN: ::c_int = 6;
0 commit comments