如何在Linux下实现定时器
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了如何在Linux下实现定时器相关的知识,希望对你有一定的参考价值。
定时器Timer应用场景非常广泛,在Linux下,有以下几种方法:1,使用sleep()和usleep()
其中sleep精度是1秒,usleep精度是1微妙,具体代码就不写了。使用这种方法缺点比较明显,在Linux系统中,sleep类函数不能保证精度,尤其在系统负载比较大时,sleep一般都会有超时现象。
2,使用信号量SIGALRM + alarm()
这种方式的精度能达到1秒,其中利用了*nix系统的信号量机制,首先注册信号量SIGALRM处理函数,调用alarm(),设置定时长度,代码如下:
[cpp] view plain copy
#include <stdio.h>
#include <signal.h>
void timer(int sig)
if(SIGALRM == sig)
printf("timer\\n");
alarm(1); //we contimue set the timer
return ;
int main()
signal(SIGALRM, timer); //relate the signal and function
alarm(1); //trigger the timer
getchar();
return 0;
alarm方式虽然很好,但是无法首先低于1秒的精度。
3,使用RTC机制
RTC机制利用系统硬件提供的Real Time Clock机制,通过读取RTC硬件/dev/rtc,通过ioctl()设置RTC频率,代码如下:
[cpp] view plain copy
#include <stdio.h>
#include <linux/rtc.h>
#include <sys/ioctl.h>
#include <sys/time.h>
#include <sys/types.h>
#include <fcntl.h>
#include <unistd.h>
#include <errno.h>
#include <stdlib.h>
int main(int argc, char* argv[])
unsigned long i = 0;
unsigned long data = 0;
int retval = 0;
int fd = open ("/dev/rtc", O_RDONLY);
if(fd < 0)
perror("open");
exit(errno);
/*Set the freq as 4Hz*/
if(ioctl(fd, RTC_IRQP_SET, 1) < 0)
perror("ioctl(RTC_IRQP_SET)");
close(fd);
exit(errno);
/* Enable periodic interrupts */
if(ioctl(fd, RTC_PIE_ON, 0) < 0)
perror("ioctl(RTC_PIE_ON)");
close(fd);
exit(errno);
for(i = 0; i < 100; i++)
if(read(fd, &data, sizeof(unsigned long)) < 0)
perror("read");
close(fd);
exit(errno);
printf("timer\\n");
/* Disable periodic interrupts */
ioctl(fd, RTC_PIE_OFF, 0);
close(fd);
return 0;
这种方式比较方便,利用了系统硬件提供的RTC,精度可调,而且非常高。
4,使用select()
这种方法在看APUE神书时候看到的,方法比较冷门,通过使用select(),来设置定时器;原理利用select()方法的第5个参数,第一个参数设置为0,三个文件描述符集都设置为NULL,第5个参数为时间结构体,代码如下:
[cpp] view plain copy
#include <sys/time.h>
#include <sys/select.h>
#include <time.h>
#include <stdio.h>
/*seconds: the seconds; mseconds: the micro seconds*/
void setTimer(int seconds, int mseconds)
struct timeval temp;
temp.tv_sec = seconds;
temp.tv_usec = mseconds;
select(0, NULL, NULL, NULL, &temp);
printf("timer\\n");
return ;
int main()
int i;
for(i = 0 ; i < 100; i++)
setTimer(1, 0);
return 0;
这种方法精度能够达到微妙级别,网上有很多基于select()的多线程定时器,说明select()稳定性还是非常好。
总结:如果对系统要求比较低,可以考虑使用简单的sleep(),毕竟一行代码就能解决;如果系统对精度要求比较高,则可以考虑RTC机制和select()机制。 参考技术A 可以使用 crontab 命令
我的linux定时任务不起作用是为啥?
我在root下输入crontab -e
键入*/1 * * * * /home/mission.sh
那个文件内容是echo "hello world">/dev/pts/1
目的是每分钟在屏幕上打印出hello world 但是死活就是不执行
cron进程始终是开着的
手动执行下/home/mission.sh,看是否会在屏幕上打印出hello world(也用root用户,且环境变量切成root用户的环境变量)
crontab -e设置后,下个一分钟是不会生效的,需要等到下下一分钟才会生效
在.sh脚本里,echo前加一句touch /home/test.txt,看该文件是否会生成(如果该文件生成了,那说明显示有问题,如不在/dev/pts/1里等,touch 文件肯定是对的)
有问题再追问,谢谢!
参考技术A查看下已经设置好的计划任务
cat /etc/crontab
重启下计划任务服务
/etc/init.d/crond restart
上面一步如果OK就不用这步
查看下日志找到错误原因
cat /var/log/cron
1、文件的执行权限
2、crontab的日志
3、路径是否正确
4、crontab 重新配置完毕之后建议重启进程:service crond restart 参考技术C 先手动运行sh /home/mission.sh测试你的脚本是不是正常运行
crontab -l 查看你是否加入了自动任务
还有你的时间设置是不是不对啊,参照一下这个
0 11 * * * /usr/bin/errclear -d S,O 30
0 12 * * * /usr/bin/errclear -d H 90
0,5,10,15,20,25,30,35,40,45,50,55 * * * * /usr/sbin/dumpctrl -k >/dev/null 2>/dev/null
0 15 * * * /usr/lib/ras/dumpcheck >/dev/null 2>&1
0 0 * * * /usr/es/sbin/cluster/utilities/clcycle 1>/dev/null 2>/dev/null # HACMP for AIX Logfile rotation
* * * * * sh /home/oracle/rm.sh 参考技术D crontab设置对了吗?还有脚本是不是有错误?执行权限给了吗?
以上是关于如何在Linux下实现定时器的主要内容,如果未能解决你的问题,请参考以下文章
干货Linux 下如何实现 MySQL 数据库每天自动备份定时备份