We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8ff67c1 commit 4b1bcc7Copy full SHA for 4b1bcc7
libc-test/semver/linux-musl.txt
@@ -93,3 +93,8 @@ reallocarray
93
setutxent
94
tcp_info
95
timex
96
+NT_PRSTATUS
97
+NT_PRFPREG
98
+NT_PRPSINFO
99
+NT_TASKSTRUCT
100
+NT_AUXV
src/unix/linux_like/linux/musl/mod.rs
@@ -883,6 +883,12 @@ pub const XSK_UNALIGNED_BUF_ADDR_MASK: ::c_ulonglong = (1 << XSK_UNALIGNED_BUF_O
883
884
pub const XDP_PKT_CONTD: ::__u32 = 1 << 0;
885
886
+pub const NT_PRSTATUS: ::c_int = 1;
887
+pub const NT_PRFPREG: ::c_int = 2;
888
+pub const NT_PRPSINFO: ::c_int = 3;
889
+pub const NT_TASKSTRUCT: ::c_int = 4;
890
+pub const NT_AUXV: ::c_int = 6;
891
+
892
cfg_if! {
893
if #[cfg(target_arch = "s390x")] {
894
pub const POSIX_FADV_DONTNEED: ::c_int = 6;
0 commit comments