setjmpDefines destination of longjmp() | |||
Arguments
Return ValueWhen setjmp() is directly invoked, 0 is returned. If the return is from a call to longjmp(), val, the argument to longjmp() is returned.ExplanationSaves environmental information (such as the stack pointer) in the memory area pointed to by p for later use by longjmp().See Alsolongjmp() |