Defined in header <setjmp.h> | ||
---|---|---|
#define setjmp(env) /* implementation-defined */ |
Saves the current execution context into a variable env
of type jmp_buf
. This variable can later be used to restore the current execution context by longjmp
function. That is, when a call to longjmp
function is made, the execution continues at the particular call site that constructed the jmp_buf
variable passed to longjmp
. In that case setjmp
returns the value passed to longjmp
.
The invocation of setjmp
must appear only in one of the following contexts:
switch(setjmp(env)) { ..
if
, switch
, while
, do-while
, for
. if(setjmp(env) > 10) { ...
if
, switch
, while
, do-while
, for
. while(!setjmp(env)) { ...
void
). setjmp(env);
If setjmp
appears in any other context, the behavior is undefined.
Upon return to the scope of setjmp
, all accessible objects, floating-point status flags, and other components of the abstract machine have the same values as they had when longjmp
was executed, except for the non-volatile local variables in the function containing the invocation of setjmp
, whose values are indeterminate if they have been changed since the setjmp
invocation.
env | - | variable to save the execution state of the program to. |
0
if the macro was called by the original code and the execution context was saved to env
.
Non-zero value if a non-local jump was just performed. The return value is the same as passed to longjmp
.
Above requirements forbid using return value of setjmp
in data flow (e.g. to initialize or assign an object with it). The return value can only be either used in control flow or discarded.
#include <stdio.h> #include <setjmp.h> #include <stdnoreturn.h> jmp_buf my_jump_buffer; noreturn void foo(int count) { printf("foo(%d) called\n", count); longjmp(my_jump_buffer, count+1); // will return count+1 out of setjmp } int main(void) { volatile int count = 0; // modified local vars in setjmp scope must be volatile if (setjmp(my_jump_buffer) != 5) // compare against constant in an if foo(++count); }
Output:
foo(1) called foo(2) called foo(3) called foo(4) called
jumps to specified location (function) |
|
C++ documentation for setjmp |
© cppreference.com
Licensed under the Creative Commons Attribution-ShareAlike Unported License v3.0.
https://en.cppreference.com/w/c/program/setjmp