1SIGNAL_DELIVERED(9) Driver Basics SIGNAL_DELIVERED(9)
2
3
4
6 signal_delivered -
7
9 void signal_delivered(int sig, siginfo_t * info,
10 struct k_sigaction * ka, struct pt_regs * regs,
11 int stepping);
12
14 sig
15 number of signal being delivered
16
17 info
18 siginfo_t of signal being delivered
19
20 ka
21 sigaction setting that chose the handler
22
23 regs
24 user register state
25
26 stepping
27 nonzero if debugger single-step or block-step in use
28
30 This function should be called when a signal has succesfully been
31 delivered. It updates the blocked signals accordingly (ka->sa.sa_mask
32 is always blocked, and the signal itself is blocked unless SA_NODEFER
33 is set in ka->sa.sa_flags. Tracing is notified.
34
36Kernel Hackers Manual 3.10 June 2019 SIGNAL_DELIVERED(9)