t**********g 发帖数: 3388 | 1 【 以下文字转载自 Linux 讨论区 】
发信人: thanksgiving (~灯红酒绿的上海~), 信区: Linux
标 题: 如果一个程序被另一个进程kill,有没有办法知道那个进程是什么?
发信站: BBS 未名空间站 (Mon Jul 28 14:35:19 2008)
Linux里,如果一个程序被另一个后台进程SIGKILL,但是不清楚那个进程是什么,有没
有办法查出来? | f**y 发帖数: 138 | 2 you can get the process id and uid of the sender of SIGINT or SIGTERM from
siginfo_t structure sent to sigaction handler.Not for SIGKILL or SIGSTOP,
which can not be caught. |
|