我可以区分直接传递给进程和通过调试器传递的信号吗?
情况1:
$ ./process1
process1 (not ptraced)
//set up handler
alarm(5);
....
//signal is handled and I can parse handler parameters
案例二:
$ debugger1 ./process1
process1 (is ptraced by debugger1)
//set up handler
alarm(5);
...
//signal is catched by debugger1. It resumes process1 with PTRACE_CONT,
// signal_number is 4th parameter of PTRACE_CONT.
//signal is redelivered to process1
//and then is handled.
那么,如何在信号处理程序中检测到它是由调试器重新传递还是由系统发送?
操作系统是 Linux,内核是 2.6.30。程序是用纯 C 编写的。在实际程序中使用 SIGALRM,但它不是由 生成alarm()
,而是由 生成setitimer()
。