Go to the documentation of this file.
25 #define SIGJMP_BUF sigjmp_buf
26 #define SIGSETJMP(buf) sigsetjmp((buf), 1)
27 #define SIGLONGJMP(buf,val) siglongjmp((buf), (val))
29 #define SIGJMP_BUF jmp_buf
30 #define SIGSETJMP(buf) setjmp(buf)
31 #define SIGLONGJMP(buf,val) longjmp((buf), (val))