mirror of
https://sourceware.org/git/glibc.git
synced 2024-11-08 14:20:07 +00:00
bc801b3a40
It requires less boilerplate code for newer ports. The _Static_assert checks from internal setjmp are moved to its own internal test since setjmp.h is included early by multiple headers (to generate rtld-sizes.sym). The riscv jmp_buf-macros.h check is also redundant, it is already done by riscv configure.ac. Checked with a build for the affected architectures.
37 lines
1.1 KiB
C
37 lines
1.1 KiB
C
#ifndef _SETJMP_H
|
|
#include <setjmp/setjmp.h>
|
|
|
|
#ifndef _ISOMAC
|
|
/* Now define the internal interfaces. */
|
|
|
|
/* Internal machine-dependent function to restore context sans signal mask. */
|
|
extern void __longjmp (__jmp_buf __env, int __val)
|
|
__attribute__ ((__noreturn__)) attribute_hidden;
|
|
|
|
extern void ____longjmp_chk (__jmp_buf __env, int __val)
|
|
__attribute__ ((__noreturn__)) attribute_hidden;
|
|
|
|
/* Internal function to possibly save the current mask of blocked signals
|
|
in ENV, and always set the flag saying whether or not it was saved.
|
|
This is used by the machine-dependent definition of `__sigsetjmp'.
|
|
Always returns zero, for convenience. */
|
|
extern int __sigjmp_save (jmp_buf __env, int __savemask);
|
|
|
|
extern void _longjmp_unwind (jmp_buf env, int val);
|
|
|
|
extern void __libc_siglongjmp (sigjmp_buf env, int val)
|
|
__attribute__ ((noreturn)) attribute_hidden;
|
|
extern void __libc_longjmp (sigjmp_buf env, int val)
|
|
__attribute__ ((noreturn)) attribute_hidden;
|
|
|
|
libc_hidden_proto (_setjmp)
|
|
libc_hidden_proto (__sigsetjmp)
|
|
|
|
# if IS_IN (rtld)
|
|
extern __typeof (__sigsetjmp) __sigsetjmp attribute_hidden;
|
|
# endif
|
|
|
|
#endif
|
|
|
|
#endif
|