带有定时器fd的epoll

问题描述 投票:0回答:1

我想用

it_interval
newValue
来设置超时的时间间隔。
但在我的示例中,我只能打印
timeout
once
发生了什么?如何设置间隔?

这是我的代码:

int main()
{
int efd =epoll_create(256);             
setnonblock(efd);
struct epoll_event ev,events[256];

int tfd;//timer fd

if((tfd= timerfd_create(CLOCK_MONOTONIC,TFD_NONBLOCK)) < 0)
  cout<<"timerfd create error"<<endl;

struct itimerspec newValue;
struct itimerspec oldValue;
bzero(&newValue,sizeof(newValue));  
bzero(&oldValue,sizeof(oldValue));
struct timespec ts;
ts.tv_sec = 5;
ts.tv_nsec = 0;

    //both interval and value have been set
    newValue.it_value = ts; 
    newValue.it_interval = ts;
    if( timerfd_settime(tfd,0,&newValue,&oldValue) <0)
    {
        cout<<"settime error"<<strerror(errno)<<endl;
    }   

    ev.data.fd = tfd;
    ev.events = EPOLLIN | EPOLLET;

    if( epoll_ctl(efd,EPOLL_CTL_ADD,tfd,&ev) < 0)
        cout<<"epoll_ctl error"<<endl;

    int num = 0;
    while(1)
    {
       if((num=epoll_wait(efd,events,256,1000)) > 0)
       {//justice
            for(int i=0;i<num;i++)
            {
                if(events[i].data.fd == tfd)
                {
                    cout<<"timeout"<<endl;
                }
        }       
    }
    }   
return 0;
}
linux timer epoll
1个回答
21
投票

这是因为您使用的是

EPOLLET
,而不是
read()
将生成的数据放入
tfd

定时器到期“写入”需要读取的 8 个字节的数据:您确实需要读取它
当你打印“timeout”时添加这个:

uint64_t value;
read(tfd, &value, 8);

更详细地说:

EPOLLET
要求边缘触发,这意味着
epoll_wait()
只会在文件描述符上说“数据已准备好输入”,直到您读取该数据为止。
换句话说,只要您没有读取该数据,以后对 
tfd
的调用就不会再次返回相同的描述符。此行为对于普通套接字很有用,例如如果您在主线程中执行
epoll_wait()
操作,请注意一些数据已准备就绪,然后启动另一个线程来读取它。主线程立即返回到
epoll_wait()
。但我们不希望它再次立即唤醒,即使文件描述符中的数据可能尚未读取。
请注意,我猜你没有 

epoll_wait()

的示例也会是错误的,不同的是:因为你没有

EPOLLET
,所以
read()
在初始延迟后始终是可读的,因此它会打印“超时”最初的延迟期满后可能会发生。
    

© www.soinside.com 2019 - 2024. All rights reserved.