signal_delivered(9) centos man page | unix.com

Man Page: signal_delivered

Operating Environment: centos

Section: 9

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)
Related Man Pages
sigwaitinfo(2) - redhat
sigtimedwait(2) - redhat
rt_tgsigqueueinfo(2) - linux
rt_sigqueueinfo(2) - suse
sigaction(2) - sunos
Similar Topics in the Unix Linux Community
Return status...
Multiple Signals
signal handling question