繁体   English   中英

Sigaction和SIGALRM

[英]Sigaction and SIGALRM

嗨,我试图了解有关信号的更多信息,并且编写了一个简单的代码,该代码应该仅打印“再见”警报信号发送的所有内容。 我正在使用sigaction进行设置。 但是,我总是在错误检查中返回NULL,有人可以告诉我我在做什么错。 提前致谢!

    #include <stdio.h>
    #include <stdlib.h>
    #include <sys/wait.h>
    #include <sys/time.h>       /* for setitimer */
    #include <unistd.h>     /* for pause */
    #include <signal.h>     /* for signal */
    #define INTERVAL 500        /* number of milliseconds to go off */

    /* function prototype */
    void DoStuff();

    int main(int argc, char *argv[]) {
      struct itimerval it_val;  /* for setting itimer */
      struct sigaction sa;
      sa.sa_handler = &DoStuff;

      /* Upon SIGALRM, call DoStuff().
      * Set interval timer.  We want frequency in ms, 
      * but the setitimer call needs seconds and useconds. */
      if (sigaction(SIGALRM,&sa,NULL) < 0) { /*set the signal to be enabled if this action occurs*/
        perror("Unable to catch SIGALRM");
        exit(1);
      }

      it_val.it_interval = it_val.it_value;
      it_val.it_value.tv_sec =     INTERVAL/1000;
      it_val.it_value.tv_usec =    (INTERVAL*1000) % 1000000;   
      it_val.it_interval = it_val.it_value;
      if (setitimer(ITIMER_REAL, &it_val, NULL) == -1) { /*set the timer to send the alarm command*/
        perror("error calling setitimer()");
        exit(1);
      }
    while(1)
    {
          pause();
    }


    }

    void DoStuff() {
      printf("bye\n");
    }

sigaction无法返回null,因为它返回一个整数。 我假设它返回-1。 您没有正确初始化sigaction结构。 它有很多字段,但是您允许它们是未定义的。 修复结构定义,然后重试。 看到:

http://man7.org/linux/man-pages/man2/sigaction.2.html

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM