longjmp
void longjmp (jmp_buf environmentBuffer, int status);
Purpose
Restores the environment saved by the most recent calling of setjmp.
Parameters
| Input | ||
| Name | Type | Description |
| environmentBuffer | jmp_buf | Contains the environment to restore. It must be the environment that a previous setjmp call provided. |
| status | int | Contains the status value returned by a previous call to setjmp. |
Return Value
None.
Additional Information
Library: ANSI C Library
Include file: ansi_c.h
LabWindows/CVI compatibility: LabWindows/CVI 3.0 and later