1#ifndef _SIGNAL_H
2# include <signal/signal.h>
3
4# ifndef _ISOMAC
5# include <sigsetops.h>
6
7libc_hidden_proto (sigemptyset)
8libc_hidden_proto (sigfillset)
9libc_hidden_proto (sigaddset)
10libc_hidden_proto (sigdelset)
11libc_hidden_proto (sigismember)
12extern int __sigpause (int sig_or_mask, int is_sig);
13libc_hidden_proto (__sigpause)
14libc_hidden_proto (raise)
15libc_hidden_proto (__libc_current_sigrtmin)
16libc_hidden_proto (__libc_current_sigrtmax)
17extern const char * const __sys_siglist[_NSIG];
18libc_hidden_proto (__sys_siglist)
19extern const char * const __sys_sigabbrev[_NSIG];
20libc_hidden_proto (__sys_sigabbrev)
21
22/* Now define the internal interfaces. */
23extern __sighandler_t __bsd_signal (int __sig, __sighandler_t __handler);
24extern int __kill (__pid_t __pid, int __sig);
25libc_hidden_proto (__kill)
26extern int __sigaction (int __sig, const struct sigaction *__restrict __act,
27 struct sigaction *__restrict __oact);
28libc_hidden_proto (__sigaction)
29extern int __sigblock (int __mask);
30libc_hidden_proto (__sigblock)
31extern int __sigsetmask (int __mask);
32extern int __sigprocmask (int __how,
33 const sigset_t *__set, sigset_t *__oset);
34libc_hidden_proto (__sigprocmask)
35extern int __sigsuspend (const sigset_t *__set);
36libc_hidden_proto (__sigsuspend)
37extern int __sigwait (const sigset_t *__set, int *__sig);
38libc_hidden_proto (__sigwait)
39extern int __sigwaitinfo (const sigset_t *__set, siginfo_t *__info);
40libc_hidden_proto (__sigwaitinfo)
41#if __TIMESIZE == 64
42# define __sigtimedwait64 __sigtimedwait
43#else
44# include <struct___timespec64.h>
45extern int __sigtimedwait64 (const sigset_t *__set, siginfo_t *__info,
46 const struct __timespec64 *__timeout);
47libc_hidden_proto (__sigtimedwait64)
48#endif
49extern int __sigtimedwait (const sigset_t *__set, siginfo_t *__info,
50 const struct timespec *__timeout);
51libc_hidden_proto (__sigtimedwait)
52extern int __sigqueue (__pid_t __pid, int __sig,
53 const union sigval __val);
54#ifdef __USE_MISC
55extern int __sigreturn (struct sigcontext *__scp);
56#endif
57extern int __sigaltstack (const stack_t *__ss,
58 stack_t *__oss);
59libc_hidden_proto (__sigaltstack)
60extern int __libc_sigaction (int sig, const struct sigaction *act,
61 struct sigaction *oact);
62libc_hidden_proto (__libc_sigaction)
63
64extern int __default_sigpause (int mask);
65extern int __xpg_sigpause (int sig);
66
67/* Allocate real-time signal with highest/lowest available priority. */
68extern int __libc_allocate_rtsig (int __high);
69
70# if IS_IN (rtld)
71extern __typeof (__sigaction) __sigaction attribute_hidden;
72extern __typeof (__libc_sigaction) __libc_sigaction attribute_hidden;
73# endif
74
75# endif /* _ISOMAC */
76#endif /* signal.h */
77

source code of glibc/include/signal.h