Query: rt_sigreturn
OS: linux
Section: 2
Format: Original Unix Latex Style Formatted with HTML and a Horizontal Scroll Bar
SIGRETURN(2) Linux Programmer's Manual SIGRETURN(2)NAMEsigreturn - return from signal handler and cleanup stack frameSYNOPSISint sigreturn(unsigned long __unused);DESCRIPTIONWhen the Linux kernel creates the stack frame for a signal handler, a call to sigreturn() is inserted into the stack frame so that upon return from the signal handler, sigreturn() will be called. This sigreturn() call undoes everything that was done--changing the process's signal mask, switching stacks (see sigaltstack(2))--in order to invoke the signal handler: it restores the process's signal mask, switches stacks, and restores the process's context (registers, pro- cessor flags), so that the process directly resumes execution at the point where it was interrupted by the signal.RETURN VALUEsigreturn() never returns.FILES/usr/src/linux/arch/i386/kernel/signal.c /usr/src/linux/arch/alpha/kernel/entry.SCONFORMING TOsigreturn() is specific to Linux and should not be used in programs intended to be portable.NOTESThe sigreturn() call is used by the kernel to implement signal handlers. It should never be called directly. Better yet, the specific use of the __unused argument varies depending on the architecture.SEE ALSOkill(2), sigaltstack(2), signal(2), signal(7)COLOPHONThis page is part of release 3.27 of the Linux man-pages project. A description of the project, and information about reporting bugs, can be found at http://www.kernel.org/doc/man-pages/. Linux 2008-06-26 SIGRETURN(2)
Related Man Pages |
---|
sigreturn(2) - suse |
rt_sigreturn(2) - debian |
rt_sigreturn(2) - mojave |
rt_sigreturn(2) - x11r4 |
rt_sigreturn(2) - posix |
Similar Topics in the Unix Linux Community |
---|
Saving process stack |
how implement a kernel call? |
Kernel Mode Linux 2.6.26_001 (For Linux 2.6 branch) |
Portable Applications |
can i get UNIX kernel and compile it like Linux ? |