SIGNAL_DELIVERED(9) Driver Basics SIGNAL_DELIVERED(9)
NAME
signal_delivered -
SYNOPSIS
void signal_delivered(int sig, siginfo_t * info, struct k_sigaction * ka, struct pt_regs * regs, int stepping);
ARGUMENTS
sig
number of signal being delivered
info
siginfo_t of signal being delivered
ka
sigaction setting that chose the handler
regs
user register state
stepping
nonzero if debugger single-step or block-step in use
DESCRIPTION
This function should be called when a signal has succesfully been delivered. It updates the blocked signals accordingly (ka->sa.sa_mask is
always blocked, and the signal itself is blocked unless SA_NODEFER is set in ka->sa.sa_flags. Tracing is notified.
COPYRIGHT
Kernel Hackers Manual 3.10 June 2014 SIGNAL_DELIVERED(9)