1SIGLONGJMP(3P) POSIX Programmer's Manual SIGLONGJMP(3P)
2
3
4
6 This manual page is part of the POSIX Programmer's Manual. The Linux
7 implementation of this interface may differ (consult the corresponding
8 Linux manual page for details of Linux behavior), or the interface may
9 not be implemented on Linux.
10
11
13 siglongjmp — non-local goto with signal handling
14
16 #include <setjmp.h>
17
18 void siglongjmp(sigjmp_buf env, int val);
19
21 The siglongjmp() function shall be equivalent to the longjmp() func‐
22 tion, except as follows:
23
24 * References to setjmp() shall be equivalent to sigsetjmp().
25
26 * The siglongjmp() function shall restore the saved signal mask if
27 and only if the env argument was initialized by a call to
28 sigsetjmp() with a non-zero savemask argument.
29
31 After siglongjmp() is completed, program execution shall continue as if
32 the corresponding invocation of sigsetjmp() had just returned the value
33 specified by val. The siglongjmp() function shall not cause
34 sigsetjmp() to return 0; if val is 0, sigsetjmp() shall return the
35 value 1.
36
38 No errors are defined.
39
40 The following sections are informative.
41
43 None.
44
46 The distinction between setjmp() or longjmp() and sigsetjmp() or sig‐
47 longjmp() is only significant for programs which use sigaction(), sig‐
48 procmask(), or sigsuspend().
49
51 None.
52
54 None.
55
57 longjmp(), pthread_sigmask(), setjmp(), sigsetjmp(), sigsuspend()
58
59 The Base Definitions volume of POSIX.1‐2008, <setjmp.h>
60
62 Portions of this text are reprinted and reproduced in electronic form
63 from IEEE Std 1003.1, 2013 Edition, Standard for Information Technology
64 -- Portable Operating System Interface (POSIX), The Open Group Base
65 Specifications Issue 7, Copyright (C) 2013 by the Institute of Electri‐
66 cal and Electronics Engineers, Inc and The Open Group. (This is
67 POSIX.1-2008 with the 2013 Technical Corrigendum 1 applied.) In the
68 event of any discrepancy between this version and the original IEEE and
69 The Open Group Standard, the original IEEE and The Open Group Standard
70 is the referee document. The original Standard can be obtained online
71 at http://www.unix.org/online.html .
72
73 Any typographical or formatting errors that appear in this page are
74 most likely to have been introduced during the conversion of the source
75 files to man page format. To report such errors, see https://www.ker‐
76 nel.org/doc/man-pages/reporting_bugs.html .
77
78
79
80IEEE/The Open Group 2013 SIGLONGJMP(3P)