我正在进行生成子进程的父进程。一段时间后,我的父进程因接收到一个信号而被杀死。我想通过给出进程的pid来跟踪来自我的子进程或外部进程的父进程的接收信号。
#include <stdio.h>
#include <unistd.h>
#include <signal.h>
#include <string.h>
static void hdl (int sig, siginfo_t *siginfo, void *context)
{
printf ("Sending PID: %ld, UID: %ld\n",
(long)siginfo->si_pid, (long)siginfo->si_uid);
fflush(stdout);
}
int main (int argc, char *argv[])
{
struct sigaction act;
memset (&act, '\0', sizeof(act));
/* Use the sa_sigaction field because the handles has two additional parameters */
act.sa_sigaction = &hdl;
/* The SA_SIGINFO flag tells sigaction() to use the sa_sigaction field, not sa_handler. */
act.sa_flags = SA_SIGINFO;
if (sigaction(SIGTERM, &act, NULL) < 0) {
perror ("sigaction");
return 1;
}
while (1)
sleep (10);
return 0;
}
在上面的程序中,我捕获其他进程发送的信号。假设我正在从另一个过程中产生这个并等待信号。 有没有办法跟踪父进程的接收信号或跟踪来自其他进程的接收信号。