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 237f3e7 + f3756b9 commit cdf6896Copy full SHA for cdf6896
libc-test/semver/linux-gnu.txt
@@ -712,3 +712,4 @@ putpwent
712
putgrent
713
execveat
714
close_range
715
+epoll_pwait2
src/unix/linux_like/linux/gnu/mod.rs
@@ -1534,6 +1534,14 @@ extern "C" {
1534
pub fn close_range(first: ::c_uint, last: ::c_uint, flags: ::c_int) -> ::c_int;
1535
1536
pub fn mq_notify(mqdes: ::mqd_t, sevp: *const ::sigevent) -> ::c_int;
1537
+
1538
+ pub fn epoll_pwait2(
1539
+ epfd: ::c_int,
1540
+ events: *mut ::epoll_event,
1541
+ maxevents: ::c_int,
1542
+ timeout: *const ::timespec,
1543
+ sigmask: *const ::sigset_t,
1544
+ ) -> ::c_int;
1545
}
1546
1547
cfg_if! {
0 commit comments