当前位置: 技术问答>docker中文入门学习手册
iis7站长之家
Linux 提供的基于文件描述符的定时器接口
来源: 互联网 发布时间:2016-09-26
本文导语: #include int timerfd_create(int clockid, int flags); int timerfd_settime(int fd, int flags, const struct itimerspec *new_value, struct itimerspec *old_value); int timerfd_gettime(int fd, struct itimerspec *curr_value); 不是说这个定...
#include
int timerfd_create(int clockid, int flags);
int timerfd_settime(int fd, int flags,
const struct itimerspec *new_value,
struct itimerspec *old_value);
int timerfd_gettime(int fd, struct itimerspec *curr_value);
不是说这个定时器,支持 select(2) 之类的吗,为什么我用select就接收不到定时器的超时信号。
而直接 read却能收到定时器的信号???
int timerfd_create(int clockid, int flags);
int timerfd_settime(int fd, int flags,
const struct itimerspec *new_value,
struct itimerspec *old_value);
int timerfd_gettime(int fd, struct itimerspec *curr_value);
不是说这个定时器,支持 select(2) 之类的吗,为什么我用select就接收不到定时器的超时信号。
而直接 read却能收到定时器的信号???
|
没用过..
贴代码看看
贴代码看看