我正在尝试使用信号处理程序,参考在线教程,但它似乎不起作用,我的代码有什么问题:
#include<signal.h>
#include<unistd.h>
#include<string.h>
#include<stdio.h>
#include<stdlib.h>
typedef void (*SignalHandlerPointer)(int);
static void UsrHostSigAbort(int pSignal)
{
//stopService();
printf("pankaj");
}
void HandleHostSignal()
{
struct sigaction satmp;
memset(&satmp, '\0' , sizeof(satmp));
SignalHandlerPointer usrSigHandler;
satmp.sa_flags &= ~SA_SIGINFO;
satmp.sa_handler = UsrHostSigAbort;
usrSigHandler = sigaction (SIGINT , &satmp, NULL);
}
void main()
{
HandleHostSignal();
while(1)
{
sleep(1);
}
}
我正在ubuntu中编译并运行这个程序。
答案 0 :(得分:3)
此代码 - 基本上只是代码中的一个微不足道的变体 - 在macOS Sierra 10.12.1上正确运行:
#include <signal.h>
#include <stdio.h>
#include <unistd.h>
static void UsrHostSigAbort(int pSignal)
{
// stopService();
// Using printf is not good - see: http://stackoverflow.com/questions/16891019/
// It will suffice for this code, however.
printf("pankaj %d\n", pSignal);
}
static void HandleHostSignal(void)
{
struct sigaction satmp;
sigemptyset(&satmp.sa_mask);
satmp.sa_flags = 0;
satmp.sa_handler = UsrHostSigAbort;
sigaction(SIGINT, &satmp, NULL);
}
int main(void)
{
HandleHostSignal();
while (1)
{
sleep(1);
putchar('.');
fflush(stdout);
}
}
示例输出(程序称为sig19
):
$ ./sig19
......^Cpankaj 2
.....^Cpankaj 2
....^Cpankaj 2
...^Cpankaj 2
..^Cpankaj 2
.^Cpankaj 2
..................^\Quit: 3
$
我使用退出键(终端上的^\
)来停止程序。