summaryrefslogtreecommitdiff
path: root/src/poll.rs
diff options
context:
space:
mode:
authorAlan Somers <asomers@gmail.com>2017-10-08 10:29:20 -0600
committerAlan Somers <asomers@gmail.com>2017-10-08 12:21:20 -0600
commit7ec567729772678899d9a53bbb25b8168d4596ca (patch)
treebae6baf03c0e317d39c4278358870947d38de8f6 /src/poll.rs
parent9f4db8a494398226d4feda72ea2c4ed25fa03364 (diff)
downloadnix-7ec567729772678899d9a53bbb25b8168d4596ca.zip
Replace most Linux man page links with Open Group man page links
But leave in place Linux links for non-standard functions. Also, add brief docs for some functions that were lacking them.
Diffstat (limited to 'src/poll.rs')
-rw-r--r--src/poll.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/poll.rs b/src/poll.rs
index 25ff170f..30a46688 100644
--- a/src/poll.rs
+++ b/src/poll.rs
@@ -91,7 +91,7 @@ libc_bitflags! {
}
/// `poll` waits for one of a set of file descriptors to become ready to perform I/O.
-/// ([`poll(2)`](http://man7.org/linux/man-pages/man2/poll.2.html))
+/// ([`poll(2)`](http://pubs.opengroup.org/onlinepubs/9699919799/functions/poll.html))
///
/// `fds` contains all [`PollFd`](struct.PollFd.html) to poll.
/// The function will return as soon as any event occur for any of these `PollFd`s.