如何找到谁将sigterm信号发送到我的进程

如何找到谁将sigterm信号发送到我的进程

本文介绍了Linux - 如何找到谁将sigterm信号发送到我的进程的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我的进程收到SIGTERM信号,我使用API​​ sigaction来获取发件人。

但系统中不存在发件人(在我获得其pid之后)。似乎发件人退出发送信号后。

我想知道谁是发件人,为什么它会向我发送SIGTERM。



什么我试过了:



过程很大,strace不起作用。

my process receive a SIGTERM signal, I used the API sigaction to get the sender.
But the sender is not exist in the system(after I got its pid).It seems the sender exit after sending the signal.
I want to know who is the sender, why it send a SIGTERM to me.

What I have tried:

The process is big, strace will not work.

推荐答案


这篇关于Linux - 如何找到谁将sigterm信号发送到我的进程的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-23 07:58