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 d90fcbf + f4f0cdb commit 4bfd852Copy full SHA for 4bfd852
libc-test/semver/linux.txt
@@ -2452,6 +2452,7 @@ TCXONC
2452
TFD_CLOEXEC
2453
TFD_NONBLOCK
2454
TFD_TIMER_ABSTIME
2455
+TFD_TIMER_CANCEL_ON_SET
2456
THOUSEP
2457
TIMER_ABSTIME
2458
TIOCCONS
src/unix/linux_like/linux/mod.rs
@@ -1811,6 +1811,7 @@ pub const ITIMER_PROF: ::c_int = 2;
1811
pub const TFD_CLOEXEC: ::c_int = O_CLOEXEC;
1812
pub const TFD_NONBLOCK: ::c_int = O_NONBLOCK;
1813
pub const TFD_TIMER_ABSTIME: ::c_int = 1;
1814
+pub const TFD_TIMER_CANCEL_ON_SET: ::c_int = 2;
1815
1816
pub const _POSIX_VDISABLE: ::cc_t = 0;
1817
0 commit comments