We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a0eef8c commit ba5c2ddCopy full SHA for ba5c2dd
src/sys/timer.rs
@@ -1,9 +1,9 @@
1
//! Timer API via signals.
2
//!
3
//! Timer is a POSIX API to create timers and get expiration notifications
4
-//! through queued signals for the current process. This is similar to
5
-//! [`crate::sys::timerfd`] but available on systems other than Linux and makes
6
-//! use of Unix signals instead of file polling.
+//! through queued Unix signals, for the current process. This is similar to
+//! Linux's timerfd mechanism, except that API is specific to Linux and makes
+//! use of file polling.
7
8
//! For more documentation, please read [timer_create](https://pubs.opengroup.org/onlinepubs/9699919799/functions/timer_create.html).
9
0 commit comments