aboutsummaryrefslogtreecommitdiff
path: root/pcap_get_required_select_timeout.3pcap
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2018-01-20 11:21:44 -0800
committerGuy Harris <guy@alum.mit.edu>2018-01-20 11:21:44 -0800
commit9bf72506a091c4acbd8b2dc34e876a01ed3f2bfe (patch)
treee5f6df2b6cb8a7108d4ab3332ae1f6c79f8d0dfe /pcap_get_required_select_timeout.3pcap
parent0f69ec44959452bfa2653361442f07efa3ab927f (diff)
Use the right name for calls to wait for events.
For the epoll mechanism, the call to wait for events is epoll_wait() (and epoll_pwait()); for the kqueue mechanism, the call to wait for events is kevent() (and additional calls in Darwin-based systems).
Diffstat (limited to 'pcap_get_required_select_timeout.3pcap')
-rw-r--r--pcap_get_required_select_timeout.3pcap6
1 files changed, 3 insertions, 3 deletions
diff --git a/pcap_get_required_select_timeout.3pcap b/pcap_get_required_select_timeout.3pcap
index 8ef6611a..09b39348 100644
--- a/pcap_get_required_select_timeout.3pcap
+++ b/pcap_get_required_select_timeout.3pcap
@@ -38,7 +38,7 @@ returns, on UNIX, a pointer to a
containing a value that must be used as the minimum timeout in
.BR select() ,
.BR poll() ,
-.BR epoll() ,
+.BR epoll_wait() ,
and
.B kevent()
calls if
@@ -58,7 +58,7 @@ and an attempt must always be made to read packets from the device
when the
.BR select() ,
.BR poll() ,
-.BR epoll() ,
+.BR epoll_wait() ,
or
.B kevent()
call returns.
@@ -81,4 +81,4 @@ is returned if the timeout is required; otherwise
is returned.
.SH SEE ALSO
pcap(3PCAP), pcap_get_selectable_fd(3PCAP), select(2), poll(2),
-epoll(2), kqueue(2)
+epoll_wait(2), kqueue(2)