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 1df1e22 + 0551044 commit e6496a1Copy full SHA for e6496a1
libc-test/semver/netbsd.txt
@@ -1403,6 +1403,7 @@ posix_spawnattr_setschedpolicy
1403
posix_spawnattr_setsigdefault
1404
posix_spawnattr_setsigmask
1405
posix_spawnattr_t
1406
+ppoll
1407
preadv
1408
pseudo_AF_HDRCMPLT
1409
pseudo_AF_KEY
src/unix/bsd/netbsdlike/netbsd/mod.rs
@@ -2806,7 +2806,12 @@ extern "C" {
2806
ts: *const ::timespec,
2807
sigmask: *const ::sigset_t,
2808
) -> ::c_int;
2809
-
+ pub fn ppoll(
2810
+ fds: *mut ::pollfd,
2811
+ nfds: ::nfds_t,
2812
+ ts: *const ::timespec,
2813
+ sigmask: *const ::sigset_t,
2814
+ ) -> ::c_int;
2815
pub fn posix_spawn(
2816
pid: *mut ::pid_t,
2817
path: *const ::c_char,
0 commit comments