setitimer()

时间:2023-12-14 15:49:32

setitimer()为Linux的API,并非C语言的Standard Library,setitimer()有两个功能,一是指定一段时间后,才执行某个function,二是每间格一段时间就执行某个function,以下程序demo如何使用setitimer()。

  1. /*
  2. Filename    : timer.cpp
  3. Compiler    : gcc 4.1.0 on Fedora Core 5
  4. Description : setitimer() set the interval to run function
  5. Synopsis    : #include <sys/time.h>
  6. int setitimer(int which, const struct itimerval *value, struct itimerval *ovalue);
  7. struct itimerval {
  8. struct timerval it_interval;
  9. struct timerval it_value;
  10. };
  11. struct timeval {
  12. long tv_sec;
  13. long tv_usec;
  14. }
  15. Release     : 11/25/2006
  16. */
  17. #include <stdio.h>    // for printf()
  18. #include <unistd.h>   // for pause()
  19. #include <signal.h>   // for signal()
  20. #include <string.h>   // for memset()
  21. #include <sys/time.h> // struct itimeral. setitimer()
  22. void printMsg(int);
  23. int main() {
  24. // Get system call result to determine successful or failed
  25. int res = 0;
  26. // Register printMsg to SIGALRM
  27. signal(SIGALRM, printMsg);
  28. struct itimerval tick;
  29. // Initialize struct
  30. memset(&tick, 0, sizeof(tick));
  31. // Timeout to run function first time
  32. tick.it_value.tv_sec = 1;  // sec
  33. tick.it_value.tv_usec = 0; // micro sec.
  34. // Interval time to run function
  35. tick.it_interval.tv_sec = 1;
  36. tick.it_interval.tv_usec = 0;
  37. // Set timer, ITIMER_REAL : real-time to decrease timer,
  38. //                          send SIGALRM when timeout
  39. res = setitimer(ITIMER_REAL, &tick, NULL);
  40. if (res) {
  41. printf("Set timer failed!!/n");
  42. }
  43. // Always sleep to catch SIGALRM signal
  44. while(1) {
  45. pause();
  46. }
  47. return 0;
  48. }
  49. void printMsg(int num) {
  50. printf("%s","Hello World!!\n");
  51. }

当setitimer()所执行的timer时间到了,会呼叫SIGALRM signal,所以在第30行用signal()将要执行的function指定给SIGALRM。 在第43行呼叫setitimer()设定timer,但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只会执行一次而已。