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 0b4f2de + e6e4bcc commit 35060e8Copy full SHA for 35060e8
libc-test/semver/linux-gnu.txt
@@ -711,3 +711,4 @@ putpwent
711
putgrent
712
execveat
713
close_range
714
+epoll_pwait2
src/unix/linux_like/linux/gnu/mod.rs
@@ -1542,6 +1542,14 @@ extern "C" {
1542
pub fn close_range(first: ::c_uint, last: ::c_uint, flags: ::c_int) -> ::c_int;
1543
1544
pub fn mq_notify(mqdes: ::mqd_t, sevp: *const ::sigevent) -> ::c_int;
1545
+
1546
+ pub fn epoll_pwait2(
1547
+ epfd: ::c_int,
1548
+ events: *mut ::epoll_event,
1549
+ maxevents: ::c_int,
1550
+ timeout: *const ::timespec,
1551
+ sigmask: *const ::sigset_t,
1552
+ ) -> ::c_int;
1553
}
1554
1555
cfg_if! {
0 commit comments