📄 setjmp.3
字号:
.\" Copyright (c) 1990, 1991, 1993.\" The Regents of the University of California. All rights reserved..\".\" This code is derived from software contributed to Berkeley by.\" the American National Standards Committee X3, on Information.\" Processing Systems..\".\" Redistribution and use in source and binary forms, with or without.\" modification, are permitted provided that the following conditions.\" are met:.\" 1. Redistributions of source code must retain the above copyright.\" notice, this list of conditions and the following disclaimer..\" 2. Redistributions in binary form must reproduce the above copyright.\" notice, this list of conditions and the following disclaimer in the.\" documentation and/or other materials provided with the distribution..\" 3. All advertising materials mentioning features or use of this software.\" must display the following acknowledgement:.\" This product includes software developed by the University of.\" California, Berkeley and its contributors..\" 4. Neither the name of the University nor the names of its contributors.\" may be used to endorse or promote products derived from this software.\" without specific prior written permission..\".\" THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND.\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE.\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.\" ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE.\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL.\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS.\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION).\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT.\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY.\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF.\" SUCH DAMAGE..\".\" @(#)setjmp.3 8.1 (Berkeley) 6/4/93.\".Dd June 4, 1993.Dt SETJMP 3.Os BSD 4.Sh NAME.Nm sigsetjmp ,.Nm siglongjmp ,.Nm setjmp ,.Nm longjmp ,.Nm _setjmp ,.Nm _longjmp longjmperror.Nd non-local jumps.Sh SYNOPSIS.Fd #include <setjmp.h>.Ft int.Fn sigsetjmp "sigjmp_buf env" "int savemask".Ft void.Fn siglongjmp "sigjmp_buf env" "int val".Ft int.Fn setjmp "jmp_buf env".Ft void.Fn longjmp "jmp_buf env" "int val".Ft int.Fn _setjmp "jmp_buf env".Ft void.Fn _longjmp "jmp_buf env" "int val".Ft void.Fn longjmperror void.Sh DESCRIPTIONThe.Fn sigsetjmp ,.Fn setjmp ,and.Fn _setjmpfunctions save their calling environment in.Fa env .Each of these functions returns 0..PpThe corresponding.Fn longjmpfunctions restore the environment saved by their most recent respectiveinvocationsof the.Fn setjmpfunction.They then return so that program execution continues as if the correspondinginvocation of the.Fn setjmpcall had just returned the value specified by.Fa val ,instead of 0..PpPairs of calls may be intermixed, i.e. both.Fn sigsetjmpand.Fn siglongjmpand.Fn setjmpand.Fn longjmpcombinations may be used in the same program, however, individualcalls may not, e.g. the.Fa envargument to.Fn setjmpmay not be passed to.Fn siglongjmp ..PpThe.Fn longjmproutines may not be called after the routine which called the.Fn setjmproutines returns..PpAll accessible objects have values as of the time.Fn longjmproutine was called, except that the values of objects of automatic storageinvocation duration that do not have the.Em volatiletype and have been changed between the.Fn setjmpinvocation and.Fn longjmpcall are indeterminate..PpThe.Fn setjmp Ns / Ns Fn longjmppairs save and restore the signal mask while.Fn _setjmp Ns / Ns Fn _longjmppairs save and restore only the register set and the stack.(See.Fn sigmask 2 . ).PpThe.Fn sigsetjmp Ns / Ns Fn siglongjmpfunctionpairs save and restore the signal mask if the argument.Fa savemaskis non-zero, otherwise only the register set and the stack are saved..Sh ERRORSIf the contents of the.Fa envare corrupted, or correspond to an environment that has already returned,the.Fn longjmproutine calls the routine.Fn longjmperror 3 .If.Fn longjmperrorreturns the program is aborted (see.Xr abort 2 ) .The default version of.Fn longjmperrorprints the message.Dq Li longjmp botchto standard error and returns.User programs wishing to exit more gracefully should write their ownversions of.Fn longjmperror ..Sh SEE ALSO.Xr sigaction 2 ,.Xr sigaltstack 2 ,.Xr signal 3.Sh STANDARDSThe.Fn setjmpand.Fn longjmpfunctions conform to.St -ansiC .The.Fn sigsetjmpand.Fn siglongjmpfunctions conform to.St -p1003.1-88 .
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -