1*8269e767SBrooks Davis.\" Copyright (c) 1985, 1991, 1993 2*8269e767SBrooks Davis.\" The Regents of the University of California. All rights reserved. 3*8269e767SBrooks Davis.\" 4*8269e767SBrooks Davis.\" Redistribution and use in source and binary forms, with or without 5*8269e767SBrooks Davis.\" modification, are permitted provided that the following conditions 6*8269e767SBrooks Davis.\" are met: 7*8269e767SBrooks Davis.\" 1. Redistributions of source code must retain the above copyright 8*8269e767SBrooks Davis.\" notice, this list of conditions and the following disclaimer. 9*8269e767SBrooks Davis.\" 2. Redistributions in binary form must reproduce the above copyright 10*8269e767SBrooks Davis.\" notice, this list of conditions and the following disclaimer in the 11*8269e767SBrooks Davis.\" documentation and/or other materials provided with the distribution. 12*8269e767SBrooks Davis.\" 3. Neither the name of the University nor the names of its contributors 13*8269e767SBrooks Davis.\" may be used to endorse or promote products derived from this software 14*8269e767SBrooks Davis.\" without specific prior written permission. 15*8269e767SBrooks Davis.\" 16*8269e767SBrooks Davis.\" THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND 17*8269e767SBrooks Davis.\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 18*8269e767SBrooks Davis.\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 19*8269e767SBrooks Davis.\" ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE 20*8269e767SBrooks Davis.\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 21*8269e767SBrooks Davis.\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 22*8269e767SBrooks Davis.\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 23*8269e767SBrooks Davis.\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 24*8269e767SBrooks Davis.\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 25*8269e767SBrooks Davis.\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 26*8269e767SBrooks Davis.\" SUCH DAMAGE. 27*8269e767SBrooks Davis.\" 28*8269e767SBrooks Davis.Dd September 6, 2013 29*8269e767SBrooks Davis.Dt SIGRETURN 2 30*8269e767SBrooks Davis.Os 31*8269e767SBrooks Davis.Sh NAME 32*8269e767SBrooks Davis.Nm sigreturn 33*8269e767SBrooks Davis.Nd return from signal 34*8269e767SBrooks Davis.Sh LIBRARY 35*8269e767SBrooks Davis.Lb libc 36*8269e767SBrooks Davis.Sh SYNOPSIS 37*8269e767SBrooks Davis.In signal.h 38*8269e767SBrooks Davis.Ft int 39*8269e767SBrooks Davis.Fn sigreturn "const ucontext_t *scp" 40*8269e767SBrooks Davis.Sh DESCRIPTION 41*8269e767SBrooks DavisThe 42*8269e767SBrooks Davis.Fn sigreturn 43*8269e767SBrooks Davissystem call 44*8269e767SBrooks Davisallows users to atomically unmask, switch stacks, 45*8269e767SBrooks Davisand return from a signal context. 46*8269e767SBrooks DavisThe thread's signal mask and stack status are 47*8269e767SBrooks Davisrestored from the context structure pointed to by 48*8269e767SBrooks Davis.Fa scp . 49*8269e767SBrooks DavisThe system call does not return; 50*8269e767SBrooks Davisthe users stack pointer, frame pointer, argument pointer, 51*8269e767SBrooks Davisand processor status longword are restored from the context. 52*8269e767SBrooks DavisExecution resumes at the specified pc. 53*8269e767SBrooks DavisThis system call is used by the trampoline code and 54*8269e767SBrooks Davis.Xr longjmp 3 55*8269e767SBrooks Daviswhen returning from a signal to the previously executing program. 56*8269e767SBrooks Davis.Sh RETURN VALUES 57*8269e767SBrooks DavisIf successful, the system call does not return. 58*8269e767SBrooks DavisOtherwise, a value of -1 is returned and 59*8269e767SBrooks Davis.Va errno 60*8269e767SBrooks Davisis set to indicate the error. 61*8269e767SBrooks Davis.Sh ERRORS 62*8269e767SBrooks DavisThe 63*8269e767SBrooks Davis.Fn sigreturn 64*8269e767SBrooks Davissystem call 65*8269e767SBrooks Daviswill fail and the thread context will remain unchanged 66*8269e767SBrooks Davisif one of the following occurs. 67*8269e767SBrooks Davis.Bl -tag -width Er 68*8269e767SBrooks Davis.It Bq Er EFAULT 69*8269e767SBrooks DavisThe 70*8269e767SBrooks Davis.Fa scp 71*8269e767SBrooks Davisargument 72*8269e767SBrooks Davispoints to memory that is not a valid part of the process 73*8269e767SBrooks Davisaddress space. 74*8269e767SBrooks Davis.It Bq Er EINVAL 75*8269e767SBrooks DavisThe process status longword is invalid or would improperly 76*8269e767SBrooks Davisraise the privilege level of the process. 77*8269e767SBrooks Davis.El 78*8269e767SBrooks Davis.Sh SEE ALSO 79*8269e767SBrooks Davis.Xr sigaction 2 , 80*8269e767SBrooks Davis.Xr setjmp 3 , 81*8269e767SBrooks Davis.Xr ucontext 3 82*8269e767SBrooks Davis.Sh HISTORY 83*8269e767SBrooks DavisThe 84*8269e767SBrooks Davis.Fn sigreturn 85*8269e767SBrooks Davissystem call appeared in 86*8269e767SBrooks Davis.Bx 4.3 . 87