signal.h 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401
  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. /* The X/Open definition of `signal' specifies the SVID semantic. Use
  61. the additional function `sysv_signal' when X/Open compatibility is
  62. requested. */
  63. extern __sighandler_t __sysv_signal (int __sig, __sighandler_t __handler)
  64. __THROW;
  65. #ifdef __USE_GNU
  66. extern __sighandler_t sysv_signal (int __sig, __sighandler_t __handler)
  67. __THROW;
  68. #endif
  69. /* Set the handler for the signal SIG to HANDLER, returning the old
  70. handler, or SIG_ERR on error.
  71. By default `signal' has the BSD semantic. */
  72. __BEGIN_NAMESPACE_STD
  73. #ifdef __USE_BSD
  74. extern __sighandler_t signal (int __sig, __sighandler_t __handler)
  75. __THROW;
  76. #else
  77. /* Make sure the used `signal' implementation is the SVID version. */
  78. # ifdef __REDIRECT
  79. extern __sighandler_t __REDIRECT (signal,
  80. (int __sig, __sighandler_t __handler),
  81. __sysv_signal);
  82. # else
  83. # define signal __sysv_signal
  84. # endif
  85. #endif
  86. __END_NAMESPACE_STD
  87. #ifdef __USE_XOPEN
  88. /* The X/Open definition of `signal' conflicts with the BSD version.
  89. So they defined another function `bsd_signal'. */
  90. extern __sighandler_t bsd_signal (int __sig, __sighandler_t __handler)
  91. __THROW;
  92. #endif
  93. /* Send signal SIG to process number PID. If PID is zero,
  94. send SIG to all processes in the current process's process group.
  95. If PID is < -1, send SIG to all processes in process group - PID. */
  96. #ifdef __USE_POSIX
  97. extern int kill (__pid_t __pid, int __sig) __THROW;
  98. #endif /* Use POSIX. */
  99. #if defined __USE_BSD || defined __USE_XOPEN_EXTENDED
  100. /* Send SIG to all processes in process group PGRP.
  101. If PGRP is zero, send SIG to all processes in
  102. the current process's process group. */
  103. extern int killpg (__pid_t __pgrp, int __sig) __THROW;
  104. #endif /* Use BSD || X/Open Unix. */
  105. __BEGIN_NAMESPACE_STD
  106. /* Raise signal SIG, i.e., send SIG to yourself. */
  107. extern int raise (int __sig) __THROW;
  108. __END_NAMESPACE_STD
  109. #ifdef __USE_SVID
  110. /* SVID names for the same things. */
  111. extern __sighandler_t ssignal (int __sig, __sighandler_t __handler)
  112. __THROW;
  113. extern int gsignal (int __sig) __THROW;
  114. #endif /* Use SVID. */
  115. #ifdef __USE_MISC
  116. /* Print a message describing the meaning of the given signal number. */
  117. extern void psignal (int __sig, __const char *__s);
  118. #endif /* Use misc. */
  119. /* The `sigpause' function has two different interfaces. The original
  120. BSD definition defines the argument as a mask of the signal, while
  121. the more modern interface in X/Open defines it as the signal
  122. number. We go with the BSD version unless the user explicitly
  123. selects the X/Open version.
  124. This function is a cancellation point and therefore not marked with
  125. __THROW. */
  126. extern int __sigpause (int __sig_or_mask, int __is_sig);
  127. #ifdef __FAVOR_BSD
  128. /* Set the mask of blocked signals to MASK,
  129. wait for a signal to arrive, and then restore the mask. */
  130. extern int sigpause (int __mask) __THROW __attribute_deprecated__;
  131. # define sigpause(mask) __sigpause ((mask), 0)
  132. #else
  133. # ifdef __USE_XOPEN
  134. /* Remove a signal from the signal mask and suspend the process. */
  135. # define sigpause(sig) __sigpause ((sig), 1)
  136. # endif
  137. #endif
  138. #ifdef __USE_BSD
  139. /* None of the following functions should be used anymore. They are here
  140. only for compatibility. A single word (`int') is not guaranteed to be
  141. enough to hold a complete signal mask and therefore these functions
  142. simply do not work in many situations. Use `sigprocmask' instead. */
  143. /* Compute mask for signal SIG. */
  144. # define sigmask(sig) __sigmask(sig)
  145. /* Block signals in MASK, returning the old mask. */
  146. extern int sigblock (int __mask) __THROW __attribute_deprecated__;
  147. /* Set the mask of blocked signals to MASK, returning the old mask. */
  148. extern int sigsetmask (int __mask) __THROW __attribute_deprecated__;
  149. /* Return currently selected signal mask. */
  150. extern int siggetmask (void) __THROW __attribute_deprecated__;
  151. #endif /* Use BSD. */
  152. #ifdef __USE_MISC
  153. # define NSIG _NSIG
  154. #endif
  155. #ifdef __USE_GNU
  156. typedef __sighandler_t sighandler_t;
  157. #endif
  158. /* 4.4 BSD uses the name `sig_t' for this. */
  159. #ifdef __USE_BSD
  160. typedef __sighandler_t sig_t;
  161. #endif
  162. #ifdef __USE_POSIX
  163. # ifdef __USE_POSIX199309
  164. /* We need `struct timespec' later on. */
  165. # define __need_timespec
  166. # include <time.h>
  167. /* Get the `siginfo_t' type plus the needed symbols. */
  168. # include <bits/siginfo.h>
  169. # endif
  170. /* Clear all signals from SET. */
  171. extern int sigemptyset (sigset_t *__set) __THROW __nonnull ((1));
  172. /* Set all signals in SET. */
  173. extern int sigfillset (sigset_t *__set) __THROW __nonnull ((1));
  174. /* Add SIGNO to SET. */
  175. extern int sigaddset (sigset_t *__set, int __signo) __THROW __nonnull ((1));
  176. /* Remove SIGNO from SET. */
  177. extern int sigdelset (sigset_t *__set, int __signo) __THROW __nonnull ((1));
  178. /* Return 1 if SIGNO is in SET, 0 if not. */
  179. extern int sigismember (__const sigset_t *__set, int __signo)
  180. __THROW __nonnull ((1));
  181. # ifdef __USE_GNU
  182. /* Return non-empty value is SET is not empty. */
  183. extern int sigisemptyset (__const sigset_t *__set) __THROW __nonnull ((1));
  184. /* Build new signal set by combining the two inputs set using logical AND. */
  185. extern int sigandset (sigset_t *__set, __const sigset_t *__left,
  186. __const sigset_t *__right) __THROW __nonnull ((1, 2, 3));
  187. /* Build new signal set by combining the two inputs set using logical OR. */
  188. extern int sigorset (sigset_t *__set, __const sigset_t *__left,
  189. __const sigset_t *__right) __THROW __nonnull ((1, 2, 3));
  190. # endif /* GNU */
  191. /* Get the system-specific definitions of `struct sigaction'
  192. and the `SA_*' and `SIG_*'. constants. */
  193. # include <bits/sigaction.h>
  194. /* Get and/or change the set of blocked signals. */
  195. extern int sigprocmask (int __how, __const sigset_t *__restrict __set,
  196. sigset_t *__restrict __oset) __THROW;
  197. /* Change the set of blocked signals to SET,
  198. wait until a signal arrives, and restore the set of blocked signals.
  199. This function is a cancellation point and therefore not marked with
  200. __THROW. */
  201. extern int sigsuspend (__const sigset_t *__set) __nonnull ((1));
  202. /* Get and/or set the action for signal SIG. */
  203. extern int sigaction (int __sig, __const struct sigaction *__restrict __act,
  204. struct sigaction *__restrict __oact) __THROW;
  205. /* Put in SET all signals that are blocked and waiting to be delivered. */
  206. extern int sigpending (sigset_t *__set) __THROW __nonnull ((1));
  207. /* Select any of pending signals from SET or wait for any to arrive.
  208. This function is a cancellation point and therefore not marked with
  209. __THROW. */
  210. extern int sigwait (__const sigset_t *__restrict __set, int *__restrict __sig)
  211. __nonnull ((1, 2));
  212. # ifdef __USE_POSIX199309
  213. /* Select any of pending signals from SET and place information in INFO.
  214. This function is a cancellation point and therefore not marked with
  215. __THROW. */
  216. extern int sigwaitinfo (__const sigset_t *__restrict __set,
  217. siginfo_t *__restrict __info) __nonnull ((1));
  218. /* Select any of pending signals from SET and place information in INFO.
  219. Wait the time specified by TIMEOUT if no signal is pending.
  220. This function is a cancellation point and therefore not marked with
  221. __THROW. */
  222. extern int sigtimedwait (__const sigset_t *__restrict __set,
  223. siginfo_t *__restrict __info,
  224. __const struct timespec *__restrict __timeout)
  225. __nonnull ((1));
  226. /* Send signal SIG to the process PID. Associate data in VAL with the
  227. signal. */
  228. extern int sigqueue (__pid_t __pid, int __sig, __const union sigval __val)
  229. __THROW;
  230. # endif /* Use POSIX 199306. */
  231. #endif /* Use POSIX. */
  232. #ifdef __USE_BSD
  233. #ifdef __UCLIBC_HAS_SYS_SIGLIST__
  234. /* Names of the signals. This variable exists only for compatibility.
  235. Use `strsignal' instead (see <string.h>). */
  236. #define _sys_siglist sys_siglist
  237. extern __const char *__const sys_siglist[_NSIG];
  238. #endif /* __UCLIBC_HAS_SYS_SIGLIST__ */
  239. /* Structure passed to `sigvec'. */
  240. struct sigvec
  241. {
  242. __sighandler_t sv_handler; /* Signal handler. */
  243. int sv_mask; /* Mask of signals to be blocked. */
  244. int sv_flags; /* Flags (see below). */
  245. # define sv_onstack sv_flags /* 4.2 BSD compatibility. */
  246. };
  247. /* Bits in `sv_flags'. */
  248. # define SV_ONSTACK (1 << 0)/* Take the signal on the signal stack. */
  249. # define SV_INTERRUPT (1 << 1)/* Do not restart system calls. */
  250. # define SV_RESETHAND (1 << 2)/* Reset handler to SIG_DFL on receipt. */
  251. /* If VEC is non-NULL, set the handler for SIG to the `sv_handler' member
  252. of VEC. The signals in `sv_mask' will be blocked while the handler runs.
  253. If the SV_RESETHAND bit is set in `sv_flags', the handler for SIG will be
  254. reset to SIG_DFL before `sv_handler' is entered. If OVEC is non-NULL,
  255. it is filled in with the old information for SIG. */
  256. extern int sigvec (int __sig, __const struct sigvec *__vec,
  257. struct sigvec *__ovec) __THROW;
  258. /* Get machine-dependent `struct sigcontext' and signal subcodes. */
  259. # include <bits/sigcontext.h>
  260. /* Restore the state saved in SCP. */
  261. extern int sigreturn (struct sigcontext *__scp) __THROW;
  262. #endif /* use BSD. */
  263. #if defined __USE_BSD || defined __USE_XOPEN_EXTENDED
  264. /* If INTERRUPT is nonzero, make signal SIG interrupt system calls
  265. (causing them to fail with EINTR); if INTERRUPT is zero, make system
  266. calls be restarted after signal SIG. */
  267. extern int siginterrupt (int __sig, int __interrupt) __THROW;
  268. # include <bits/sigstack.h>
  269. # ifdef __USE_XOPEN
  270. /* This will define `ucontext_t' and `mcontext_t'. */
  271. # include <ucontext.h>
  272. # endif
  273. /* Run signals handlers on the stack specified by SS (if not NULL).
  274. If OSS is not NULL, it is filled in with the old signal stack status.
  275. This interface is obsolete and on many platform not implemented. */
  276. extern int sigstack (struct sigstack *__ss, struct sigstack *__oss)
  277. __THROW __attribute_deprecated__;
  278. /* Alternate signal handler stack interface.
  279. This interface should always be preferred over `sigstack'. */
  280. extern int sigaltstack (__const struct sigaltstack *__restrict __ss,
  281. struct sigaltstack *__restrict __oss) __THROW;
  282. #endif /* use BSD or X/Open Unix. */
  283. #ifdef __USE_XOPEN_EXTENDED
  284. /* Simplified interface for signal management. */
  285. /* Add SIG to the calling process' signal mask. */
  286. extern int sighold (int __sig) __THROW;
  287. /* Remove SIG from the calling process' signal mask. */
  288. extern int sigrelse (int __sig) __THROW;
  289. /* Set the disposition of SIG to SIG_IGN. */
  290. extern int sigignore (int __sig) __THROW;
  291. /* Set the disposition of SIG. */
  292. extern __sighandler_t sigset (int __sig, __sighandler_t __disp) __THROW;
  293. #endif
  294. #if defined __UCLIBC_HAS_THREADS__ && (defined __USE_POSIX199506 || defined __USE_UNIX98)
  295. /* Some of the functions for handling signals in threaded programs must
  296. be defined here. */
  297. # include <bits/pthreadtypes.h>
  298. # include <bits/sigthread.h>
  299. #endif /* use Unix98 */
  300. /* The following functions are used internally in the C library and in
  301. other code which need deep insights. */
  302. /* Return number of available real-time signal with highest priority. */
  303. extern int __libc_current_sigrtmin (void) __THROW;
  304. /* Return number of available real-time signal with lowest priority. */
  305. extern int __libc_current_sigrtmax (void) __THROW;
  306. #endif /* signal.h */
  307. __END_DECLS
  308. #endif /* not signal.h */