diff options
Diffstat (limited to 'src/sys/select.rs')
-rw-r--r-- | src/sys/select.rs | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/sys/select.rs b/src/sys/select.rs index 07190fa1..252fa6bc 100644 --- a/src/sys/select.rs +++ b/src/sys/select.rs @@ -66,7 +66,7 @@ impl FdSet { } } -/// Monitors file descriptors for readiness (see [select(2)]). +/// Monitors file descriptors for readiness /// /// Returns the total number of ready file descriptors in all sets. The sets are changed so that all /// file descriptors that are ready for the given operation are set. @@ -84,7 +84,9 @@ impl FdSet { /// * `timeout`: Maximum time to wait for descriptors to become ready (`None` to block /// indefinitely). /// -/// [select(2)]: http://man7.org/linux/man-pages/man2/select.2.html +/// # References +/// +/// [select(2)](http://pubs.opengroup.org/onlinepubs/9699919799/functions/select.html) /// [`FdSet::highest`]: struct.FdSet.html#method.highest pub fn select<'a, N, R, W, E, T>(nfds: N, readfds: R, |