centos man page for signal_delivered

Query: signal_delivered

OS: centos

Section: 9

Format: Original Unix Latex Style Formatted with HTML and a Horizontal Scroll Bar

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
sigqueue(2) - redhat
sigtimedwait(2) - redhat
rt_sigqueueinfo(2) - linux
rt_sigtimedwait(2) - linux
sigwaitinfo(2) - linux
Similar Topics in the Unix Linux Community
Return status...
Multiple Signals
signal handling question