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 a9c4446 commit 204fe25Copy full SHA for 204fe25
libc-test/build.rs
@@ -2654,6 +2654,16 @@ fn test_linux(target: &str) {
2654
// Not yet implemented on sparc64
2655
"SYS_clone3" if mips | sparc64 => true,
2656
2657
+ // FIXME: these syscalls were added in Linux 5.9 or later
2658
+ // and are currently not included in the glibc headers.
2659
+ | "SYS_close_range"
2660
+ | "SYS_openat2"
2661
+ | "SYS_pidfd_getfd"
2662
+ | "SYS_faccessat2"
2663
+ | "SYS_process_madvise"
2664
+ | "SYS_epoll_pwait2"
2665
+ | "SYS_mount_setattr" => true,
2666
+
2667
// Requires more recent kernel headers:
2668
| "IFLA_PROP_LIST"
2669
| "IFLA_ALT_IFNAME"
0 commit comments