logo

oasis-root

Compiled tree of Oasis Linux based on own branch at <https://hacktivis.me/git/oasis/> git clone https://anongit.hacktivis.me/git/oasis-root.git

setjmp.h.0p (2628B)


  1. '\" et
  2. .TH setjmp.h "0P" 2017 "IEEE/The Open Group" "POSIX Programmer's Manual"
  3. .\"
  4. .SH PROLOG
  5. This manual page is part of the POSIX Programmer's Manual.
  6. The Linux implementation of this interface may differ (consult
  7. the corresponding Linux manual page for details of Linux behavior),
  8. or the interface may not be implemented on Linux.
  9. .\"
  10. .SH NAME
  11. setjmp.h
  12. \(em stack environment declarations
  13. .SH SYNOPSIS
  14. .LP
  15. .nf
  16. #include <setjmp.h>
  17. .fi
  18. .SH DESCRIPTION
  19. Some of the functionality described on this reference page extends the
  20. ISO\ C standard. Applications shall define the appropriate feature test macro
  21. (see the System Interfaces volume of POSIX.1\(hy2017,
  22. .IR "Section 2.2" ", " "The Compilation Environment")
  23. to enable the visibility of these symbols in this header.
  24. .P
  25. The
  26. .IR <setjmp.h>
  27. header shall define the array types
  28. .BR jmp_buf
  29. and
  30. .BR sigjmp_buf .
  31. .P
  32. The following shall be declared as functions and may also be defined as
  33. macros. Function prototypes shall be provided.
  34. .sp
  35. .RS 4
  36. .nf
  37. void _longjmp(jmp_buf, int);
  38. void longjmp(jmp_buf, int);
  39. void siglongjmp(sigjmp_buf, int);
  40. .fi
  41. .P
  42. .RE
  43. .P
  44. The following may be declared as functions, or defined as macros, or
  45. both. If functions are declared, function prototypes shall be
  46. provided.
  47. .sp
  48. .RS 4
  49. .nf
  50. int _setjmp(jmp_buf);
  51. int setjmp(jmp_buf);
  52. int sigsetjmp(sigjmp_buf, int);
  53. .fi
  54. .P
  55. .RE
  56. .LP
  57. .IR "The following sections are informative."
  58. .SH "APPLICATION USAGE"
  59. None.
  60. .SH RATIONALE
  61. None.
  62. .SH "FUTURE DIRECTIONS"
  63. None.
  64. .SH "SEE ALSO"
  65. The System Interfaces volume of POSIX.1\(hy2017,
  66. .IR "Section 2.2" ", " "The Compilation Environment",
  67. .IR "\fI_longjmp\fR\^(\|)",
  68. .IR "\fIlongjmp\fR\^(\|)",
  69. .IR "\fIsetjmp\fR\^(\|)",
  70. .IR "\fIsiglongjmp\fR\^(\|)",
  71. .IR "\fIsigsetjmp\fR\^(\|)"
  72. .\"
  73. .SH COPYRIGHT
  74. Portions of this text are reprinted and reproduced in electronic form
  75. from IEEE Std 1003.1-2017, Standard for Information Technology
  76. -- Portable Operating System Interface (POSIX), The Open Group Base
  77. Specifications Issue 7, 2018 Edition,
  78. Copyright (C) 2018 by the Institute of
  79. Electrical and Electronics Engineers, Inc and The Open Group.
  80. In the event of any discrepancy between this version and the original IEEE and
  81. The Open Group Standard, the original IEEE and The Open Group Standard
  82. is the referee document. The original Standard can be obtained online at
  83. http://www.opengroup.org/unix/online.html .
  84. .PP
  85. Any typographical or formatting errors that appear
  86. in this page are most likely
  87. to have been introduced during the conversion of the source files to
  88. man page format. To report such errors, see
  89. https://www.kernel.org/doc/man-pages/reporting_bugs.html .