type
jmp_buf
<csetjmp>
Type to hold information to restore calling environment
This is an array type capable of storing the information of a calling environment to be restored later.
This information is filled by calling macro
setjmp and can be restored by calling function
longjmp.
See also
- setjmp
- Save calling environment for long jump (macro)
- longjmp
- Long jump (function)