在查看信号时,我发现处理程序内的语句没有打印出来。这是我使用的代码:
#include"stdio.h"
#include"signal.h"
#include"unistd.h"
void handlerSIGINT(int sig)
{
if(sig == SIGINT)
printf("\nFinally caught SIGINT...");
}
int main()
{
printf("Hello ... soon u'll receive a signal");
if(signal(SIGINT, handlerSIGINT) == SIG_ERR)
{
printf("error in SIGINT handling");
}
while(1)
sleep(1);
/*now press control + C to see the effect */
return 0;
}
运行程序时,我得到以下输出:
[root@node1 mytest]# ./a.out
^CHello ... soon u'll receive a signal
^CFinally caught SIGINT...
^CFinally caught SIGINT...
^CFinally caught SIGINT...
^Z
[1]+ Stopped ./a.out
我的困惑是:当我第一次按下" Ctrl + C"它没有在处理程序中打印消息,即"最后抓住了SIGINT ......" 。但是从第二次开始打印消息。任何人都可以解释为什么会发生这种情况......
答案 0 :(得分:4)
void handlerSIGINT(int sig)
{
if (sig == SIGINT)
printf("\nFinally caught SIGINT...");
}
此处在信号处理程序中,输出不会被新行终止,默认情况下,标准输出是行缓冲的,因此仅在下次看到\n
开头时显示。将其更改为:
printf("Finally caught SIGINT...\n");
你可能会看到预期的结果。但请注意you should avoid using printf
in a signal handler。