p The corresponding .Fn longjmp functions restore the environment saved by the most recent invocation of the respective .Fn setjmp function. They then return so that program execution continues as if the corresponding invocation of the .Fn setjmp call had just returned the value specified by .Fa val , instead of 0. The .Fn longjmp functions cannot cause .Fn setjmp to return 0; if .Fa val is 0, .Fn setjmp returns 1 instead.
p Pairs of calls may be intermixed, i.e., both .Fn sigsetjmp and .Fn siglongjmp as well as .Fn setjmp and .Fn longjmp combinations may be used in the same program. However, individual calls may not, e.g., the .Fa env argument to .Fn setjmp may not be passed to .Fn siglongjmp .
p The .Fn longjmp routines may not be called after the routine which called the .Fn setjmp routines returns.
p All accessible objects have values as of the time .Fn longjmp routine was called, except that the values of objects of automatic storage invocation duration that do not have the .Li volatile type and have been changed between the .Fn setjmp invocation and .Fn longjmp call are indeterminate.
p The .Fn setjmp Ns / Ns Fn longjmp function pairs save and restore the signal mask while .Fn _setjmp Ns / Ns Fn _longjmp function pairs save and restore only the register set and the stack. (See .Fn sigprocmask 2 . )
p The .Fn sigsetjmp Ns / Ns Fn siglongjmp function pairs save and restore the signal mask if the argument .Fa savemask is non-zero. Otherwise, only the register set and the stack are saved.
p In other words, .Fn setjmp Ns / Ns Fn longjmp are functionally equivalent to .Fn sigsetjmp Ns / Ns Fn siglongjmp when .Fn sigsetjmp is called with a non-zero .Fa savemask argument. Conversely, .Fn _setjmp Ns / Ns Fn _longjmp are functionally equivalent to .Fn sigsetjmp Ns / Ns Fn siglongjmp when .Fn sigsetjmp is called with a zero-value .Fa savemask .
p The .Fn sigsetjmp Ns / Ns Fn siglongjmp interfaces are preferred for maximum portability. .Sh ERRORS If the contents of the .Fa env are corrupted or correspond to an environment that has already returned, the .Fn longjmp routine calls the routine .Xr longjmperror 3 . If .Fn longjmperror returns, the program is aborted (see .Xr abort 3 ) . The default version of .Fn longjmperror prints the message .Dq Li longjmp botch to standard error and returns. User programs wishing to exit more gracefully should write their own versions of .Fn longjmperror . .Sh SEE ALSO .Xr sigaction 2 , .Xr sigaltstack 2 , .Xr sigprocmask 2 , .Xr pthread_sigmask 3 , .Xr signal 3 .Sh STANDARDS The .Fn setjmp and .Fn longjmp functions conform to .St -ansiC . The .Fn sigsetjmp and .Fn siglongjmp functions conform to .St -p1003.1-90 . .Sh CAVEATS Historically, on .At V , the .Fn setjmp Ns / Ns Fn longjmp functions have been equivalent to the x .Fn _setjmp Ns / Ns Fn _longjmp functions and do not restore the signal mask. Because of this discrepancy, the .Fn sigsetjmp Ns / Ns Fn siglongjmp interfaces should be used if portability is desired.
p Use of .Fn longjmp or .Fn siglongjmp from inside a signal handler is not as easy as it might seem. Generally speaking, all possible code paths between the .Fn setjmp and .Fn longjmp must be signal race safe. Furthermore, the code paths must not do resource management (such as .Xr open 2 or .Xr close 2 ) without blocking the signal in question, or resources might be mismanaged. Obviously this makes .Fn longjmp much less useful than previously thought.