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 f1bb40a commit 0551044Copy full SHA for 0551044
libc-test/semver/netbsd.txt
@@ -1396,6 +1396,7 @@ posix_spawnattr_setschedpolicy
1396
posix_spawnattr_setsigdefault
1397
posix_spawnattr_setsigmask
1398
posix_spawnattr_t
1399
+ppoll
1400
preadv
1401
pseudo_AF_HDRCMPLT
1402
pseudo_AF_KEY
src/unix/bsd/netbsdlike/netbsd/mod.rs
@@ -2798,7 +2798,12 @@ extern "C" {
2798
ts: *const ::timespec,
2799
sigmask: *const ::sigset_t,
2800
) -> ::c_int;
2801
-
+ pub fn ppoll(
2802
+ fds: *mut ::pollfd,
2803
+ nfds: ::nfds_t,
2804
+ ts: *const ::timespec,
2805
+ sigmask: *const ::sigset_t,
2806
+ ) -> ::c_int;
2807
pub fn posix_spawn(
2808
pid: *mut ::pid_t,
2809
path: *const ::c_char,
0 commit comments