linux wait 系统调用,epoll_wait 系统调用

epoll_wait, epoll_pwait - wait for an I/O event on an epoll file

descriptor

以上两个系统调用等待epoll fd上的IO 事件

#include

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参数的时间单位是毫秒,epoll_wait 系统调用将被阻塞。时间由CLOCK_MONOTONIC测量,直到下列几种情况该调用将一直被阻塞。

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.

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值