1TRACEHOOK_CONSIDER_F(9) Kernel Internals TRACEHOOK_CONSIDER_F(9)
2
3
4
6 tracehook_consider_fatal_signal - suppress special handling of fatal
7 signal
8
10 int tracehook_consider_fatal_signal(struct task_struct * task,
11 int sig);
12
14 task
15 task receiving the signal
16
17 sig
18 signal number being sent
19
21 Return nonzero to prevent special handling of this termination signal.
22 Normally handler for signal is SIG_DFL. It can be SIG_IGN if sig is
23 ignored, in which case force_sig is about to reset it to SIG_DFL. When
24 this returns zero, this signal might cause a quick termination that
25 does not give the debugger a chance to intercept the signal.
26
27 Called with or without task->sighand->siglock held.
28
29
30
31Kernel Hackers Manual 2.6. November 2011 TRACEHOOK_CONSIDER_F(9)