signal.h 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421
  1. /* Copyright (C) 1991-2003, 2004 Free Software Foundation, Inc.
  2. This file is part of the GNU C Library.
  3. The GNU C Library is free software; you can redistribute it and/or
  4. modify it under the terms of the GNU Lesser General Public
  5. License as published by the Free Software Foundation; either
  6. version 2.1 of the License, or (at your option) any later version.
  7. The GNU C Library is distributed in the hope that it will be useful,
  8. but WITHOUT ANY WARRANTY; without even the implied warranty of
  9. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  10. Lesser General Public License for more details.
  11. You should have received a copy of the GNU Lesser General Public
  12. License along with the GNU C Library; if not, write to the Free
  13. Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
  14. 02111-1307 USA. */
  15. /*
  16. * ISO C99 Standard: 7.14 Signal handling <signal.h>
  17. */
  18. #ifndef _SIGNAL_H
  19. #if !defined __need_sig_atomic_t && !defined __need_sigset_t
  20. # define _SIGNAL_H
  21. #endif
  22. #include <features.h>
  23. __BEGIN_DECLS
  24. #include <bits/sigset.h> /* __sigset_t, __sig_atomic_t. */
  25. /* An integral type that can be modified atomically, without the
  26. possibility of a signal arriving in the middle of the operation. */
  27. #if defined __need_sig_atomic_t || defined _SIGNAL_H
  28. # ifndef __sig_atomic_t_defined
  29. # define __sig_atomic_t_defined
  30. __BEGIN_NAMESPACE_STD
  31. typedef __sig_atomic_t sig_atomic_t;
  32. __END_NAMESPACE_STD
  33. # endif
  34. # undef __need_sig_atomic_t
  35. #endif
  36. #if defined __need_sigset_t || (defined _SIGNAL_H && defined __USE_POSIX)
  37. # ifndef __sigset_t_defined
  38. # define __sigset_t_defined
  39. typedef __sigset_t sigset_t;
  40. # endif
  41. # undef __need_sigset_t
  42. #endif
  43. #ifdef _SIGNAL_H
  44. #include <bits/types.h>
  45. #include <bits/signum.h>
  46. #if defined __USE_XOPEN || defined __USE_XOPEN2K
  47. # ifndef __pid_t_defined
  48. typedef __pid_t pid_t;
  49. # define __pid_t_defined
  50. #endif
  51. #ifdef __USE_XOPEN
  52. # endif
  53. # ifndef __uid_t_defined
  54. typedef __uid_t uid_t;
  55. # define __uid_t_defined
  56. # endif
  57. #endif /* Unix98 */
  58. /* Type of a signal handler. */
  59. typedef void (*__sighandler_t) (int);
  60. #if defined __UCLIBC_HAS_OBSOLETE_SYSV_SIGNAL__
  61. /* The X/Open definition of `signal' specifies the SVID semantic. Use
  62. the additional function `sysv_signal' when X/Open compatibility is
  63. requested. */
  64. extern __sighandler_t __sysv_signal (int __sig, __sighandler_t __handler)
  65. __THROW;
  66. #ifdef __USE_GNU
  67. extern __sighandler_t sysv_signal (int __sig, __sighandler_t __handler)
  68. __THROW;
  69. #endif
  70. #endif /* __UCLIBC_HAS_OBSOLETE_SYSV_SIGNAL__ */
  71. /* Set the handler for the signal SIG to HANDLER, returning the old
  72. handler, or SIG_ERR on error.
  73. By default `signal' has the BSD semantic. */
  74. __BEGIN_NAMESPACE_STD
  75. #if defined __USE_BSD || !defined __UCLIBC_HAS_OBSOLETE_SYSV_SIGNAL__
  76. extern __sighandler_t signal (int __sig, __sighandler_t __handler)
  77. __THROW;
  78. libc_hidden_proto(signal)
  79. #else
  80. /* Make sure the used `signal' implementation is the SVID version. */
  81. # ifdef __REDIRECT_NTH
  82. extern __sighandler_t __REDIRECT_NTH (signal,
  83. (int __sig, __sighandler_t __handler),
  84. __sysv_signal);
  85. # else
  86. # define signal __sysv_signal
  87. # endif
  88. #endif
  89. __END_NAMESPACE_STD
  90. #ifdef __USE_XOPEN
  91. /* The X/Open definition of `signal' conflicts with the BSD version.
  92. So they defined another function `bsd_signal'. */
  93. extern __sighandler_t bsd_signal (int __sig, __sighandler_t __handler)
  94. __THROW;
  95. #endif
  96. /* Send signal SIG to process number PID. If PID is zero,
  97. send SIG to all processes in the current process's process group.
  98. If PID is < -1, send SIG to all processes in process group - PID. */
  99. #ifdef __USE_POSIX
  100. extern int kill (__pid_t __pid, int __sig) __THROW;
  101. libc_hidden_proto(kill)
  102. #endif /* Use POSIX. */
  103. #if defined __USE_BSD || defined __USE_XOPEN_EXTENDED
  104. /* Send SIG to all processes in process group PGRP.
  105. If PGRP is zero, send SIG to all processes in
  106. the current process's process group. */
  107. extern int killpg (__pid_t __pgrp, int __sig) __THROW;
  108. #endif /* Use BSD || X/Open Unix. */
  109. __BEGIN_NAMESPACE_STD
  110. /* Raise signal SIG, i.e., send SIG to yourself. */
  111. extern int raise (int __sig) __THROW;
  112. libc_hidden_proto(raise)
  113. __END_NAMESPACE_STD
  114. #ifdef __USE_SVID
  115. /* SVID names for the same things. */
  116. extern __sighandler_t ssignal (int __sig, __sighandler_t __handler)
  117. __THROW;
  118. extern int gsignal (int __sig) __THROW;
  119. #endif /* Use SVID. */
  120. #ifdef __USE_MISC
  121. /* Print a message describing the meaning of the given signal number. */
  122. extern void psignal (int __sig, __const char *__s);
  123. #endif /* Use misc. */
  124. /* The `sigpause' function has two different interfaces. The original
  125. BSD definition defines the argument as a mask of the signal, while
  126. the more modern interface in X/Open defines it as the signal
  127. number. We go with the BSD version unless the user explicitly
  128. selects the X/Open version.
  129. This function is a cancellation point and therefore not marked with
  130. __THROW. */
  131. extern int __sigpause (int __sig_or_mask, int __is_sig);
  132. libc_hidden_proto(__sigpause)
  133. #ifdef __FAVOR_BSD
  134. /* Set the mask of blocked signals to MASK,
  135. wait for a signal to arrive, and then restore the mask. */
  136. extern int sigpause (int __mask) __THROW __attribute_deprecated__;
  137. libc_hidden_proto(sigpause)
  138. # define sigpause(mask) __sigpause ((mask), 0)
  139. #else
  140. # ifdef __USE_XOPEN
  141. /* Remove a signal from the signal mask and suspend the process. */
  142. # define sigpause(sig) __sigpause ((sig), 1)
  143. # endif
  144. #endif
  145. #ifdef __USE_BSD
  146. /* None of the following functions should be used anymore. They are here
  147. only for compatibility. A single word (`int') is not guaranteed to be
  148. enough to hold a complete signal mask and therefore these functions
  149. simply do not work in many situations. Use `sigprocmask' instead. */
  150. /* Compute mask for signal SIG. */
  151. # define sigmask(sig) __sigmask(sig)
  152. /* Block signals in MASK, returning the old mask. */
  153. extern int sigblock (int __mask) __THROW;
  154. /* collides with libc_hidden_proto: __attribute_deprecated__; */
  155. libc_hidden_proto(sigblock)
  156. /* Set the mask of blocked signals to MASK, returning the old mask. */
  157. extern int sigsetmask (int __mask) __THROW;
  158. /* collides with libc_hidden_proto: __attribute_deprecated__; */
  159. libc_hidden_proto(sigsetmask)
  160. /* Return currently selected signal mask. */
  161. extern int siggetmask (void) __THROW __attribute_deprecated__;
  162. #endif /* Use BSD. */
  163. #ifdef __USE_MISC
  164. # define NSIG _NSIG
  165. #endif
  166. #ifdef __USE_GNU
  167. typedef __sighandler_t sighandler_t;
  168. #endif
  169. /* 4.4 BSD uses the name `sig_t' for this. */
  170. #ifdef __USE_BSD
  171. typedef __sighandler_t sig_t;
  172. #endif
  173. #ifdef __USE_POSIX
  174. # ifdef __USE_POSIX199309
  175. /* We need `struct timespec' later on. */
  176. # define __need_timespec
  177. # include <time.h>
  178. /* Get the `siginfo_t' type plus the needed symbols. */
  179. # include <bits/siginfo.h>
  180. # endif
  181. /* Clear all signals from SET. */
  182. extern int sigemptyset (sigset_t *__set) __THROW __nonnull ((1));
  183. libc_hidden_proto(sigemptyset)
  184. /* Set all signals in SET. */
  185. extern int sigfillset (sigset_t *__set) __THROW __nonnull ((1));
  186. libc_hidden_proto(sigfillset)
  187. /* Add SIGNO to SET. */
  188. extern int sigaddset (sigset_t *__set, int __signo) __THROW __nonnull ((1));
  189. libc_hidden_proto(sigaddset)
  190. /* Remove SIGNO from SET. */
  191. extern int sigdelset (sigset_t *__set, int __signo) __THROW __nonnull ((1));
  192. libc_hidden_proto(sigdelset)
  193. /* Return 1 if SIGNO is in SET, 0 if not. */
  194. extern int sigismember (__const sigset_t *__set, int __signo)
  195. __THROW __nonnull ((1));
  196. # ifdef __USE_GNU
  197. /* Return non-empty value is SET is not empty. */
  198. extern int sigisemptyset (__const sigset_t *__set) __THROW __nonnull ((1));
  199. /* Build new signal set by combining the two inputs set using logical AND. */
  200. extern int sigandset (sigset_t *__set, __const sigset_t *__left,
  201. __const sigset_t *__right) __THROW __nonnull ((1, 2, 3));
  202. /* Build new signal set by combining the two inputs set using logical OR. */
  203. extern int sigorset (sigset_t *__set, __const sigset_t *__left,
  204. __const sigset_t *__right) __THROW __nonnull ((1, 2, 3));
  205. # endif /* GNU */
  206. /* Get the system-specific definitions of `struct sigaction'
  207. and the `SA_*' and `SIG_*'. constants. */
  208. # include <bits/sigaction.h>
  209. /* Get and/or change the set of blocked signals. */
  210. extern int sigprocmask (int __how, __const sigset_t *__restrict __set,
  211. sigset_t *__restrict __oset) __THROW;
  212. libc_hidden_proto(sigprocmask)
  213. /* Change the set of blocked signals to SET,
  214. wait until a signal arrives, and restore the set of blocked signals.
  215. This function is a cancellation point and therefore not marked with
  216. __THROW. */
  217. extern int sigsuspend (__const sigset_t *__set) __nonnull ((1));
  218. libc_hidden_proto(sigsuspend)
  219. /* Get and/or set the action for signal SIG. */
  220. extern int sigaction (int __sig, __const struct sigaction *__restrict __act,
  221. struct sigaction *__restrict __oact) __THROW;
  222. libc_hidden_proto(sigaction)
  223. /* Put in SET all signals that are blocked and waiting to be delivered. */
  224. extern int sigpending (sigset_t *__set) __THROW __nonnull ((1));
  225. /* Select any of pending signals from SET or wait for any to arrive.
  226. This function is a cancellation point and therefore not marked with
  227. __THROW. */
  228. extern int sigwait (__const sigset_t *__restrict __set, int *__restrict __sig)
  229. __nonnull ((1, 2));
  230. libc_hidden_proto(sigwait)
  231. # if defined __USE_POSIX199309 && defined __UCLIBC_HAS_REALTIME__
  232. /* Select any of pending signals from SET and place information in INFO.
  233. This function is a cancellation point and therefore not marked with
  234. __THROW. */
  235. extern int sigwaitinfo (__const sigset_t *__restrict __set,
  236. siginfo_t *__restrict __info) __nonnull ((1));
  237. libc_hidden_proto(sigwaitinfo)
  238. /* Select any of pending signals from SET and place information in INFO.
  239. Wait the time specified by TIMEOUT if no signal is pending.
  240. This function is a cancellation point and therefore not marked with
  241. __THROW. */
  242. extern int sigtimedwait (__const sigset_t *__restrict __set,
  243. siginfo_t *__restrict __info,
  244. __const struct timespec *__restrict __timeout)
  245. __nonnull ((1));
  246. libc_hidden_proto(sigtimedwait)
  247. /* Send signal SIG to the process PID. Associate data in VAL with the
  248. signal. */
  249. extern int sigqueue (__pid_t __pid, int __sig, __const union sigval __val)
  250. __THROW;
  251. # endif /* Use POSIX 199306. */
  252. #endif /* Use POSIX. */
  253. #ifdef __USE_BSD
  254. #ifdef __UCLIBC_HAS_SYS_SIGLIST__
  255. /* Names of the signals. This variable exists only for compatibility.
  256. Use `strsignal' instead (see <string.h>). */
  257. #define _sys_siglist sys_siglist
  258. extern __const char *__const sys_siglist[_NSIG];
  259. #endif /* __UCLIBC_HAS_SYS_SIGLIST__ */
  260. /* Structure passed to `sigvec'. */
  261. struct sigvec
  262. {
  263. __sighandler_t sv_handler; /* Signal handler. */
  264. int sv_mask; /* Mask of signals to be blocked. */
  265. int sv_flags; /* Flags (see below). */
  266. # define sv_onstack sv_flags /* 4.2 BSD compatibility. */
  267. };
  268. /* Bits in `sv_flags'. */
  269. # define SV_ONSTACK (1 << 0)/* Take the signal on the signal stack. */
  270. # define SV_INTERRUPT (1 << 1)/* Do not restart system calls. */
  271. # define SV_RESETHAND (1 << 2)/* Reset handler to SIG_DFL on receipt. */
  272. /* If VEC is non-NULL, set the handler for SIG to the `sv_handler' member
  273. of VEC. The signals in `sv_mask' will be blocked while the handler runs.
  274. If the SV_RESETHAND bit is set in `sv_flags', the handler for SIG will be
  275. reset to SIG_DFL before `sv_handler' is entered. If OVEC is non-NULL,
  276. it is filled in with the old information for SIG. */
  277. extern int sigvec (int __sig, __const struct sigvec *__vec,
  278. struct sigvec *__ovec) __THROW;
  279. /* Get machine-dependent `struct sigcontext' and signal subcodes. */
  280. # include <bits/sigcontext.h>
  281. /* Restore the state saved in SCP. */
  282. extern int sigreturn (struct sigcontext *__scp) __THROW;
  283. #endif /* use BSD. */
  284. #if defined __USE_BSD || defined __USE_XOPEN_EXTENDED
  285. /* If INTERRUPT is nonzero, make signal SIG interrupt system calls
  286. (causing them to fail with EINTR); if INTERRUPT is zero, make system
  287. calls be restarted after signal SIG. */
  288. extern int siginterrupt (int __sig, int __interrupt) __THROW;
  289. # include <bits/sigstack.h>
  290. # ifdef __USE_XOPEN
  291. /* This will define `ucontext_t' and `mcontext_t'. */
  292. # include <ucontext.h>
  293. # endif
  294. /* Run signals handlers on the stack specified by SS (if not NULL).
  295. If OSS is not NULL, it is filled in with the old signal stack status.
  296. This interface is obsolete and on many platform not implemented. */
  297. extern int sigstack (struct sigstack *__ss, struct sigstack *__oss)
  298. __THROW __attribute_deprecated__;
  299. /* Alternate signal handler stack interface.
  300. This interface should always be preferred over `sigstack'. */
  301. extern int sigaltstack (__const struct sigaltstack *__restrict __ss,
  302. struct sigaltstack *__restrict __oss) __THROW;
  303. #endif /* use BSD or X/Open Unix. */
  304. #if defined __USE_XOPEN_EXTENDED && defined __UCLIBC_HAS_OBSOLETE_BSD_SIGNAL__
  305. /* Simplified interface for signal management. */
  306. /* Add SIG to the calling process' signal mask. */
  307. extern int sighold (int __sig) __THROW;
  308. /* Remove SIG from the calling process' signal mask. */
  309. extern int sigrelse (int __sig) __THROW;
  310. /* Set the disposition of SIG to SIG_IGN. */
  311. extern int sigignore (int __sig) __THROW;
  312. /* Set the disposition of SIG. */
  313. extern __sighandler_t sigset (int __sig, __sighandler_t __disp) __THROW;
  314. #endif
  315. #if defined __UCLIBC_HAS_THREADS__ && (defined __USE_POSIX199506 || defined __USE_UNIX98)
  316. /* Some of the functions for handling signals in threaded programs must
  317. be defined here. */
  318. # include <bits/pthreadtypes.h>
  319. # include <bits/sigthread.h>
  320. #endif /* use Unix98 */
  321. /* The following functions are used internally in the C library and in
  322. other code which need deep insights. */
  323. /* Return number of available real-time signal with highest priority. */
  324. extern int __libc_current_sigrtmin (void) __THROW;
  325. /* Return number of available real-time signal with lowest priority. */
  326. extern int __libc_current_sigrtmax (void) __THROW;
  327. #endif /* signal.h */
  328. __END_DECLS
  329. #endif /* not signal.h */