1818IP-服务器技术教程,云服务器评测推荐,服务器系统排错处理,环境搭建,攻击防护等

当前位置:首页 - 运维 - 正文

君子好学,自强不息!

Linux setitimer参数设定如何使用程序

2022-11-12 | 运维 | gtxyzz | 576°c
A+ A-

Linux setitimer对于电脑使用的玩家的常用软件,然后我就学习及深入的研究Linux setitimer,在这里和大家一起探讨Linux setitimer的使用方法,希望对大家有用。Linux setitimer()为Linux的API,并非C语言的Standard Library,Linux setitimer()有两个功能,一是指定一段时间后,才执行某个function,二是每间格一段时间就执行某个function,以下程序demo如何使用Linux setitimer()。

viewplaincopytoclipboardprint?/* Filename:timer.cpp Compiler:gcc4.1.0onFedoraCore5 Description:Linuxsetitimer()settheintervaltorunfunction Synopsis:#include<sys
/time.h>
 intLinuxsetitimer(intwhich,conststructitimerval*value,structitimerval*ovalue); structitimerval{ structtimervalit_interval; structtimervalit_value; }; structtimeval{ longtv_sec; longtv_usec; } Release:11/25/2006 */ #include<stdio.h>
//forprintf() #include<unistd.h>
//forpause() #include<signal.h>
//forsignal() #include<string.h>
//formemset() #include<sys
/time.h>
//structitimeral.Linuxsetitimer() voidprintMsg(int); intmain(){ //Getsystemcallresulttodeterminesuccessfulorfailed intres
=0
; //RegisterprintMsgtoSIGALRM signal(SIGALRM,printMsg); structitimervaltick; //Initializestruct memset(&tick,0,sizeof(tick)); //Timeouttorunfunctionfirsttime tick.it_value.tv_sec
=1
;//sec tick.it_value.tv_usec
=0
;//microsec. //Intervaltimetorunfunction tick.it_interval.tv_sec
=1
; tick.it_interval.tv_usec
=0
; //Settimer,ITIMER_REAL:real-timetodecreasetimer, //sendSIGALRMwhentimeout res
=Linux
setitimer(ITIMER_REAL,&tick,NULL); if(res){ printf("Settimerfailed!!\n"); } //AlwayssleeptocatchSIGALRMsignal while(1){ pause(); } return0; } voidprintMsg(intnum){ printf("%s","HelloWorld!!\n"); } 



















































当Linux setitimer()所执行的timer时间到了,会呼叫SIGALRM signal,所以在第30行用signal()将要执行的function指定给SIGALRM。 在第43行呼叫Linux setitimer()设定timer,但Linux setitimer()

第二个参数是sturct,负责设定timeout时间,所以第36行到第 40行设定此struct。itimerval.it_value设定第一次执行function所延迟的秒数, itimerval.it_interval设定以后每几秒执行function,所以若只想延迟一段时间执行function,只要设定 itimerval.it_value即可.

若要设定间格一段时间就执行function,则it_value和it_interval都要设定,否则 funtion的第一次无法执行,就别说以后的间隔执行了。 第36行和第39行的tv_sec为sec,第37行和40行为micro sec(0.001 sec)。 第43行的第一个参数ITIMER_REAL,表示以real-time方式减少timer,在timeout时会送出SIGALRM signal。

第三个参数会存放旧的timeout值,如果不需要的话,指定NULL即可。 第47 行的pause(),命令系统进入sleep状态,等待任何signal,一定要用while(1)无穷循环执行pause(),如此才能一直接收 SIGALRM signal以间隔执行function,若拿掉while(1),则function只会执行一次而已。

本文来源:1818IP

本文地址:https://www.1818ip.com/post/8713.html

免责声明:本文由用户上传,如有侵权请联系删除!

发表评论

必填

选填

选填

◎欢迎参与讨论,请在这里发表您的看法、交流您的观点。