epoll_wait 系統(tǒng)調(diào)用

http://man7.org/linux/man-pages/man2/epoll_wait.2.html

epoll_wait, epoll_pwait - wait for an I/O event on an epoll file
descriptor
以上兩個(gè)系統(tǒng)調(diào)用等待epoll fd上的IO 事件

#include <sys/epoll.h>

       int epoll_wait(int epfd, struct epoll_event *events,
                      int maxevents, int timeout);
       int epoll_pwait(int epfd, struct epoll_event *events,
                      int maxevents, int timeout,
                      const sigset_t *sigmask);

The epoll_wait() system call waits for events on the epoll(7)
instance referred to by the file descriptor epfd. The memory area pointed to by events will contain the events that will be available
for the caller. Up to maxevents are returned by epoll_wait(). The maxevents argument must be greater than zero.

The timeout argument specifies the number of milliseconds that
epoll_wait() will block. Time is measured against the
CLOCK_MONOTONIC clock. The call will block until either:
timout參數(shù)的時(shí)間單位是毫秒,epoll_wait 系統(tǒng)調(diào)用將被阻塞。時(shí)間由CLOCK_MONOTONIC測量,直到下列幾種情況該調(diào)用將一直被阻塞。

  • a file descriptor delivers an event;
  • the call is interrupted by a signal handler;
  • the timeout expires.

Note
that the timeout interval will be rounded up to the system clock
granularity, and kernel scheduling delays mean that the blocking
interval may overrun by a small amount.

  • Specifying a timeout of -1 causes epoll_wait() to block indefinitely,
    timeout=-1 將一直被阻塞,直到有 event 到來
  • while specifying a timeout equal to zero cause epoll_wait() to return immediately, even if no events are available.
    timeout=0 則立即返回,即使沒有可用的event

RETURN VALUE

When successful, epoll_wait() returns the number of file descriptors
ready for the requested I/O, or zero if no file descriptor became
ready during the requested timeout milliseconds. When an error
occurs, epoll_wait() returns -1 and errno is set appropriately.

ERROR

  • EBADF epfd is not a valid file descriptor.
  • EFAULT The memory area pointed to by events is not accessible with
    write permissions.
  • EINTR The call was interrupted by a signal handler before either (1)
    any of the requested events occurred or (2) the timeout
    expired; see signal(7).
  • EINVAL epfd is not an epoll file descriptor, or maxevents is less
    than or equal to zero.
最后編輯于
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請聯(lián)系作者
【社區(qū)內(nèi)容提示】社區(qū)部分內(nèi)容疑似由AI輔助生成,瀏覽時(shí)請結(jié)合常識(shí)與多方信息審慎甄別。
平臺(tái)聲明:文章內(nèi)容(如有圖片或視頻亦包括在內(nèi))由作者上傳并發(fā)布,文章內(nèi)容僅代表作者本人觀點(diǎn),簡書系信息發(fā)布平臺(tái),僅提供信息存儲(chǔ)服務(wù)。

相關(guān)閱讀更多精彩內(nèi)容

友情鏈接更多精彩內(nèi)容