<< Previous | Next >> | |
|
void longjmp( jmp_buf env, int val );
Description
- Restores the stack environment saved in array
env[ ]
. See the description of setjmp for details of use.
NOTE you cannot use longjmp()
to move out of slice statements, costatements, or cofunctions.Parameters
- env
- Environment previously saved with
setjmp()
.
- val
- Integer result of
setjmp()
.
Library
- SYS.LIB
See also
- setjmp
Dynamic C Functions | << Previous | Next >> | rabbit.com |