我正在尝试在C / linux中编写一个忽略SIGTERM的SIGINT和SIGQUIT信号并退出的进程。对于其他信号,它应该写出信号和时间。我无法控制所有信号,因为我只熟悉捕获1个信号。如果有人能帮助我,我会非常感激。这是我的代码:
#include <signal.h>
#include <stdio.h>
#include <string.h>
#include <unistd.h>
#include <time.h>
int done = 0;
void term(int signum)
{
if (signum == 15)
{
//printf("%d\n",signum);
printf("Received SIGTERM, exiting ... \n");
done = 1;
}
else
{
time_t mytime = time(0);
printf("%d: %s\n", signum, asctime(localtime(&mytime)));
printf("%d\n",signum);
}
}
int main(int argc, char *argv[])
{
struct sigaction action;
memset(&action, 0, sizeof(struct sigaction));
action.sa_handler = term;
sigaction(SIGTERM, &action, NULL);
struct sigaction act;
memset(&act, 0, sizeof(struct sigaction));
act.sa_handler = SIG_IGN;
sigaction(SIGQUIT, &act, NULL);
sigaction(SIGINT, &act, NULL);
int loop = 0;
while(!done)
{
sleep(1);
}
printf("done.\n");
return 0;
}
答案 0 :(得分:0)
这是简单的方法
void sig_handler(int signo)
{
if (signo == SIGINT)
printf("received SIGINT\n");
}
int main(void)
{
if (signal(SIGINT, sig_handler) == SIG_ERR)
等等。
signal()和sighandler()是执行此操作的最简单方法。
要捕获的每个信号的呼叫信号。但正如一些人早先所说,你只能捕捉到某些信号。最好有办法优雅地关闭程序。