实现select_[LINUX] select epoll实现定时器功能

51d9ff1d20aa467e3f1efc58502d2e9e.png

使用select函数,实现微妙级别精度的定时器

  • select函数原型
int select(int nfds, fd_set *readfds, fd_set *writefds,
                  fd_set *exceptfds, struct timeval *timeout);
select函数使用了一个结构体timeval作为其参数,select函数会更新timeval的值,timeval保持的值为剩余时间

通过指定参数timeval的值,在时间耗尽后,select函数返回,基于这一点,select实现精确定时

The timeout argument for select() is a structure of the following type:
struct timeval {
time_t tv_sec; /* seconds */
suseconds_t tv_usec; /* microseconds */
};
  • select定时的例子
  1. 秒级定时器
  2. 毫秒级定时器
  3. 微秒级别定时器
1.秒级定时器
void seconds_sleep(unsigned seconds){
	struct timeval tv;
	tv.tv_sec=seconds;
	tv.tv_usec=0;
	int err;
	do{
	   err=select(0,NULL,NULL,NULL,&tv);
	}while(err<0 && errno==EINTR);
}

2.毫秒级别定时器
void milliseconds_sleep(unsigned long mSec){
	struct timeval tv;
	tv.tv_sec=mSec/1000;
	tv.tv_usec=(mSec%1000)*1000;
	int err;
	do{
	   err=select(0,NULL,NULL,NULL,&tv);
	}while(err<0 && errno==EINTR);
}

3.微秒级别定时器
void microseconds_sleep(unsigned long uSec){
	struct timeval tv;
	tv.tv_sec=uSec/1000000;
	tv.tv_usec=uSec%1000000;
	int err;
	do{
	    err=select(0,NULL,NULL,NULL,&tv);
	}while(err<0 && errno==EINTR);
}

参考文献

select(2) - Linux manual page​man7.org Linux下使用select实现超级定时器_JJDiaries-CSDN博客​blog.csdn.net
d5615459c67ba1893ef8716fb46eed62.png
Linux定时器 select(微秒精度)poll(毫秒精度)​blog.csdn.net
1da0155448acc7f692e3bd83d91d4b19.png
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值