[Overview][Constants][Types][Classes][Procedures and functions][Variables][Index] |
Jump to address.
Source position: setjumph.inc line 27
procedure longjmp( |
var S: jmp_buf; |
value: LongInt |
); |
LongJmp jumps to the address in the envjmp_buf, and restores the registers that were stored in it at the corresponding SetJmp call. In effect, program flow will continue at the SetJmp call, which will return value instead of 0. If a value equal to zero is passed, it will be converted to 1 before passing it on. The call will not return, so it must be used with extreme care. This can be used for error recovery, for instance when a segmentation fault occurred.
For an example, see SetJmp
None.
|
Save current execution point. |