signal.h 17 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503
  1. /* Copyright (C) 1991-2003, 2004, 2007, 2009 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, see
  13. <http://www.gnu.org/licenses/>. */
  14. /*
  15. * ISO C99 Standard: 7.14 Signal handling <signal.h>
  16. */
  17. #ifndef _SIGNAL_H
  18. #if !defined __need_sig_atomic_t && !defined __need_sigset_t
  19. # define _SIGNAL_H
  20. #endif
  21. #include <features.h>
  22. __BEGIN_DECLS
  23. #include <bits/sigset.h> /* __sigset_t, __sig_atomic_t. */
  24. /* An integral type that can be modified atomically, without the
  25. possibility of a signal arriving in the middle of the operation. */
  26. #if defined __need_sig_atomic_t || defined _SIGNAL_H
  27. # ifndef __sig_atomic_t_defined
  28. # define __sig_atomic_t_defined
  29. __BEGIN_NAMESPACE_STD
  30. typedef __sig_atomic_t sig_atomic_t;
  31. __END_NAMESPACE_STD
  32. # endif
  33. # undef __need_sig_atomic_t
  34. #endif
  35. #if defined __need_sigset_t || (defined _SIGNAL_H && defined __USE_POSIX)
  36. # ifndef __sigset_t_defined
  37. # define __sigset_t_defined
  38. typedef __sigset_t sigset_t;
  39. # endif
  40. # undef __need_sigset_t
  41. #endif
  42. #ifdef _SIGNAL_H
  43. #include <bits/types.h>
  44. #include <bits/signum.h>
  45. /* Fake signal functions. */
  46. #define SIG_ERR ((__sighandler_t) -1) /* Error return. */
  47. #define SIG_DFL ((__sighandler_t) 0) /* Default action. */
  48. #define SIG_IGN ((__sighandler_t) 1) /* Ignore signal. */
  49. #ifdef __USE_UNIX98
  50. # define SIG_HOLD ((__sighandler_t) 2) /* Add signal to hold mask. */
  51. #endif
  52. /* Biggest signal number + 1 (including real-time signals). */
  53. #ifndef _NSIG /* if arch has not defined it in bits/signum.h... */
  54. # define _NSIG 65
  55. #endif
  56. #ifdef __USE_MISC
  57. # define NSIG _NSIG
  58. #endif
  59. /* Real-time signal range */
  60. #define SIGRTMIN (__libc_current_sigrtmin())
  61. #define SIGRTMAX (__libc_current_sigrtmax())
  62. /* These are the hard limits of the kernel. These values should not be
  63. used directly at user level. */
  64. #ifndef __SIGRTMIN /* if arch has not defined it in bits/signum.h... */
  65. # define __SIGRTMIN 32
  66. #endif
  67. #define __SIGRTMAX (_NSIG - 1)
  68. #if defined __USE_XOPEN || defined __USE_XOPEN2K
  69. # ifndef __pid_t_defined
  70. typedef __pid_t pid_t;
  71. # define __pid_t_defined
  72. # endif
  73. #endif
  74. #ifdef __USE_XOPEN
  75. # ifndef __uid_t_defined
  76. typedef __uid_t uid_t;
  77. # define __uid_t_defined
  78. # endif
  79. #endif /* Unix98 */
  80. #if defined __USE_POSIX199309 && defined __UCLIBC_HAS_REALTIME__
  81. /* We need `struct timespec' later on. */
  82. # define __need_timespec
  83. # include <time.h>
  84. /* Get the `siginfo_t' type plus the needed symbols. */
  85. # include <bits/siginfo.h>
  86. #endif
  87. /* Type of a signal handler. */
  88. typedef void (*__sighandler_t) (int);
  89. #if defined __UCLIBC_HAS_OBSOLETE_SYSV_SIGNAL__
  90. /* The X/Open definition of `signal' specifies the SVID semantic. Use
  91. the additional function `sysv_signal' when X/Open compatibility is
  92. requested. */
  93. extern __sighandler_t __sysv_signal (int __sig, __sighandler_t __handler)
  94. __THROW;
  95. # ifdef __USE_GNU
  96. extern __sighandler_t sysv_signal (int __sig, __sighandler_t __handler)
  97. __THROW;
  98. # endif
  99. #endif /* __UCLIBC_HAS_OBSOLETE_SYSV_SIGNAL__ */
  100. /* Set the handler for the signal SIG to HANDLER, returning the old
  101. handler, or SIG_ERR on error.
  102. By default `signal' has the BSD semantic. */
  103. __BEGIN_NAMESPACE_STD
  104. #if defined __USE_BSD || !defined __UCLIBC_HAS_OBSOLETE_SYSV_SIGNAL__
  105. extern __sighandler_t signal (int __sig, __sighandler_t __handler)
  106. __THROW;
  107. libc_hidden_proto(signal)
  108. #else
  109. /* Make sure the used `signal' implementation is the SVID version. */
  110. # ifdef __REDIRECT_NTH
  111. extern __sighandler_t __REDIRECT_NTH (signal,
  112. (int __sig, __sighandler_t __handler),
  113. __sysv_signal);
  114. # else
  115. # define signal __sysv_signal
  116. # endif
  117. #endif
  118. __END_NAMESPACE_STD
  119. #if defined __USE_XOPEN && defined __UCLIBC_SUSV3_LEGACY__
  120. /* The X/Open definition of `signal' conflicts with the BSD version.
  121. So they defined another function `bsd_signal'. */
  122. extern __sighandler_t bsd_signal (int __sig, __sighandler_t __handler)
  123. __THROW;
  124. #endif
  125. /* Send signal SIG to process number PID. If PID is zero,
  126. send SIG to all processes in the current process's process group.
  127. If PID is < -1, send SIG to all processes in process group - PID. */
  128. #ifdef __USE_POSIX
  129. extern int kill (__pid_t __pid, int __sig) __THROW;
  130. libc_hidden_proto(kill)
  131. #endif
  132. #if defined __USE_BSD || defined __USE_XOPEN_EXTENDED
  133. /* Send SIG to all processes in process group PGRP.
  134. If PGRP is zero, send SIG to all processes in
  135. the current process's process group. */
  136. extern int killpg (__pid_t __pgrp, int __sig) __THROW;
  137. #endif
  138. __BEGIN_NAMESPACE_STD
  139. /* Raise signal SIG, i.e., send SIG to yourself. */
  140. extern int raise (int __sig) __THROW;
  141. libc_hidden_proto(raise)
  142. __END_NAMESPACE_STD
  143. #if 0 /*def __USE_SVID*/
  144. /* SVID names for the same things. */
  145. extern __sighandler_t ssignal (int __sig, __sighandler_t __handler)
  146. __THROW;
  147. extern int gsignal (int __sig) __THROW;
  148. #endif /* Use SVID. */
  149. /* glibc guards the next two wrong with __USE_XOPEN2K */
  150. #if defined __USE_MISC || defined __USE_XOPEN2K8
  151. /* Print a message describing the meaning of the given signal number. */
  152. extern void psignal (int __sig, __const char *__s);
  153. #endif /* Use misc or POSIX 2008. */
  154. #if 0 /*def __USE_XOPEN2K8*/
  155. /* Print a message describing the meaning of the given signal information. */
  156. extern void psiginfo (__const siginfo_t *__pinfo, __const char *__s);
  157. #endif /* POSIX 2008. */
  158. #ifdef __UCLIBC_SUSV4_LEGACY__
  159. /* The `sigpause' function has two different interfaces. The original
  160. BSD definition defines the argument as a mask of the signal, while
  161. the more modern interface in X/Open defines it as the signal
  162. number. We go with the BSD version unless the user explicitly
  163. selects the X/Open version.
  164. This function is a cancellation point and therefore not marked with
  165. __THROW. */
  166. /*extern int __sigpause (int __sig_or_mask, int __is_sig);*/
  167. #ifdef __FAVOR_BSD
  168. /* Set the mask of blocked signals to MASK,
  169. wait for a signal to arrive, and then restore the mask. */
  170. /*extern int sigpause (int __mask) __THROW __attribute_deprecated__;
  171. # define sigpause(mask) __sigpause ((mask), 0)*/
  172. /* uClibc note: BSD sigpause is available as __bsd_sigpause.
  173. * It is intentionally not prototyped */
  174. #else
  175. # ifdef __USE_XOPEN
  176. /* Remove a signal from the signal mask and suspend the process. */
  177. extern int sigpause(int __sig);
  178. /*# define sigpause(sig) __sigpause ((sig), 1)*/
  179. # endif
  180. #endif
  181. #endif /* __UCLIBC_SUSV4_LEGACY__ */
  182. #if 0 /*def __USE_BSD*/
  183. /* None of the following functions should be used anymore. They are here
  184. only for compatibility. A single word (`int') is not guaranteed to be
  185. enough to hold a complete signal mask and therefore these functions
  186. simply do not work in many situations. Use `sigprocmask' instead. */
  187. /* Compute mask for signal SIG. */
  188. # define sigmask(sig) __sigmask(sig)
  189. /* Block signals in MASK, returning the old mask. */
  190. extern int sigblock (int __mask) __THROW __attribute_deprecated__;
  191. /* Set the mask of blocked signals to MASK, returning the old mask. */
  192. extern int sigsetmask (int __mask) __THROW __attribute_deprecated__;
  193. /* Return currently selected signal mask. */
  194. extern int siggetmask (void) __THROW __attribute_deprecated__;
  195. #endif /* Use BSD. */
  196. #ifdef __USE_GNU
  197. typedef __sighandler_t sighandler_t;
  198. #endif
  199. /* 4.4 BSD uses the name `sig_t' for this. */
  200. #ifdef __USE_BSD
  201. typedef __sighandler_t sig_t;
  202. #endif
  203. #ifdef __USE_POSIX
  204. /* Clear all signals from SET. */
  205. extern int sigemptyset (sigset_t *__set) __THROW __nonnull ((1));
  206. /* Set all signals in SET. */
  207. extern int sigfillset (sigset_t *__set) __THROW __nonnull ((1));
  208. /* Add SIGNO to SET. */
  209. extern int sigaddset (sigset_t *__set, int __signo) __THROW __nonnull ((1));
  210. libc_hidden_proto(sigaddset)
  211. /* Remove SIGNO from SET. */
  212. extern int sigdelset (sigset_t *__set, int __signo) __THROW __nonnull ((1));
  213. libc_hidden_proto(sigdelset)
  214. /* Return 1 if SIGNO is in SET, 0 if not. */
  215. extern int sigismember (__const sigset_t *__set, int __signo)
  216. __THROW __nonnull ((1));
  217. # ifdef __USE_GNU
  218. /* Return non-empty value is SET is not empty. */
  219. extern int sigisemptyset (__const sigset_t *__set) __THROW __nonnull ((1));
  220. /* Build new signal set by combining the two inputs set using logical AND. */
  221. extern int sigandset (sigset_t *__set, __const sigset_t *__left,
  222. __const sigset_t *__right) __THROW __nonnull ((1, 2, 3));
  223. /* Build new signal set by combining the two inputs set using logical OR. */
  224. extern int sigorset (sigset_t *__set, __const sigset_t *__left,
  225. __const sigset_t *__right) __THROW __nonnull ((1, 2, 3));
  226. # endif /* GNU */
  227. /* Get the system-specific definitions of `struct sigaction'
  228. and the `SA_*' and `SIG_*'. constants. */
  229. # include <bits/sigaction.h>
  230. /* Get and/or change the set of blocked signals. */
  231. extern int sigprocmask (int __how, __const sigset_t *__restrict __set,
  232. sigset_t *__restrict __oset) __THROW;
  233. libc_hidden_proto(sigprocmask)
  234. /* Change the set of blocked signals to SET,
  235. wait until a signal arrives, and restore the set of blocked signals.
  236. This function is a cancellation point and therefore not marked with
  237. __THROW. */
  238. extern int sigsuspend (__const sigset_t *__set) __nonnull ((1));
  239. #ifdef _LIBC
  240. extern __typeof(sigsuspend) __sigsuspend_nocancel attribute_hidden;
  241. libc_hidden_proto(sigsuspend)
  242. #endif
  243. /* Get and/or set the action for signal SIG. */
  244. extern int sigaction (int __sig, __const struct sigaction *__restrict __act,
  245. struct sigaction *__restrict __oact) __THROW;
  246. #ifdef _LIBC
  247. # if 0 /* this is in headers */
  248. /* In uclibc, userspace struct sigaction is identical to
  249. * "new" struct kernel_sigaction (one from the Linux 2.1.68 kernel).
  250. * See sigaction.h
  251. */
  252. struct old_kernel_sigaction;
  253. extern int __syscall_sigaction(int, __const struct old_kernel_sigaction *,
  254. struct old_kernel_sigaction *) attribute_hidden;
  255. # else /* this is how the function is built */
  256. extern __typeof(sigaction) __syscall_sigaction attribute_hidden;
  257. # endif
  258. # define __need_size_t
  259. # include <stddef.h>
  260. /* candidate for attribute_hidden, if NPTL would behave */
  261. extern int __syscall_rt_sigaction(int, __const struct sigaction *,
  262. struct sigaction *, size_t)
  263. # ifndef __UCLIBC_HAS_THREADS_NATIVE__
  264. attribute_hidden
  265. # endif
  266. ;
  267. extern __typeof(sigaction) __libc_sigaction;
  268. libc_hidden_proto(sigaction)
  269. # ifdef __mips__
  270. # define _KERNEL_NSIG_WORDS (_NSIG / _MIPS_SZLONG)
  271. typedef struct {
  272. unsigned long sig[_KERNEL_NSIG_WORDS];
  273. } kernel_sigset_t;
  274. # define __SYSCALL_SIGSET_T_SIZE (sizeof(kernel_sigset_t))
  275. # else
  276. # define __SYSCALL_SIGSET_T_SIZE (_NSIG / 8)
  277. # endif
  278. #endif
  279. /* Put in SET all signals that are blocked and waiting to be delivered. */
  280. extern int sigpending (sigset_t *__set) __THROW __nonnull ((1));
  281. /* Select any of pending signals from SET or wait for any to arrive.
  282. This function is a cancellation point and therefore not marked with
  283. __THROW. */
  284. extern int sigwait (__const sigset_t *__restrict __set, int *__restrict __sig)
  285. __nonnull ((1, 2));
  286. # if defined __USE_POSIX199309 && defined __UCLIBC_HAS_REALTIME__
  287. /* Select any of pending signals from SET and place information in INFO.
  288. This function is a cancellation point and therefore not marked with
  289. __THROW. */
  290. extern int sigwaitinfo (__const sigset_t *__restrict __set,
  291. siginfo_t *__restrict __info) __nonnull ((1));
  292. #ifdef _LIBC
  293. extern __typeof(sigwaitinfo) __sigwaitinfo attribute_hidden;
  294. #endif
  295. /* Select any of pending signals from SET and place information in INFO.
  296. Wait the time specified by TIMEOUT if no signal is pending.
  297. This function is a cancellation point and therefore not marked with
  298. __THROW. */
  299. extern int sigtimedwait (__const sigset_t *__restrict __set,
  300. siginfo_t *__restrict __info,
  301. __const struct timespec *__restrict __timeout)
  302. __nonnull ((1));
  303. #ifdef _LIBC
  304. extern __typeof(sigtimedwait) __sigtimedwait_nocancel attribute_hidden;
  305. libc_hidden_proto(sigtimedwait)
  306. #endif
  307. /* Send signal SIG to the process PID. Associate data in VAL with the
  308. signal. */
  309. extern int sigqueue (__pid_t __pid, int __sig, __const union sigval __val)
  310. __THROW;
  311. # endif /* Use POSIX 199306. */
  312. #endif /* Use POSIX. */
  313. #ifdef __USE_BSD
  314. # ifdef __UCLIBC_HAS_SYS_SIGLIST__
  315. /* Names of the signals. This variable exists only for compatibility.
  316. Use `strsignal' instead (see <string.h>). */
  317. # define _sys_siglist sys_siglist
  318. extern __const char *__const sys_siglist[_NSIG];
  319. # endif
  320. #ifndef __UCLIBC_STRICT_HEADERS__
  321. /* Structure passed to `sigvec'. */
  322. struct sigvec
  323. {
  324. __sighandler_t sv_handler; /* Signal handler. */
  325. int sv_mask; /* Mask of signals to be blocked. */
  326. int sv_flags; /* Flags (see below). */
  327. # define sv_onstack sv_flags /* 4.2 BSD compatibility. */
  328. };
  329. /* Bits in `sv_flags'. */
  330. # define SV_ONSTACK (1 << 0)/* Take the signal on the signal stack. */
  331. # define SV_INTERRUPT (1 << 1)/* Do not restart system calls. */
  332. # define SV_RESETHAND (1 << 2)/* Reset handler to SIG_DFL on receipt. */
  333. #endif
  334. #if 0
  335. /* If VEC is non-NULL, set the handler for SIG to the `sv_handler' member
  336. of VEC. The signals in `sv_mask' will be blocked while the handler runs.
  337. If the SV_RESETHAND bit is set in `sv_flags', the handler for SIG will be
  338. reset to SIG_DFL before `sv_handler' is entered. If OVEC is non-NULL,
  339. it is filled in with the old information for SIG. */
  340. extern int sigvec (int __sig, __const struct sigvec *__vec,
  341. struct sigvec *__ovec) __THROW;
  342. #endif
  343. /* Get machine-dependent `struct sigcontext' and signal subcodes. */
  344. # include <bits/sigcontext.h>
  345. #if 0
  346. /* Restore the state saved in SCP. */
  347. extern int sigreturn (struct sigcontext *__scp) __THROW;
  348. #endif
  349. #endif /* use BSD. */
  350. #if defined __USE_BSD || defined __USE_XOPEN_EXTENDED
  351. # define __need_size_t
  352. # include <stddef.h>
  353. # ifdef __UCLIBC_SUSV4_LEGACY__
  354. /* If INTERRUPT is nonzero, make signal SIG interrupt system calls
  355. (causing them to fail with EINTR); if INTERRUPT is zero, make system
  356. calls be restarted after signal SIG. */
  357. extern int siginterrupt (int __sig, int __interrupt) __THROW;
  358. # endif
  359. # include <bits/sigstack.h>
  360. # ifdef __USE_XOPEN
  361. /* This will define `ucontext_t' and `mcontext_t'. */
  362. /* SuSv4 obsoleted include/ucontext.h */
  363. # include <sys/ucontext.h>
  364. # endif
  365. # if 0
  366. /* Run signals handlers on the stack specified by SS (if not NULL).
  367. If OSS is not NULL, it is filled in with the old signal stack status.
  368. This interface is obsolete and on many platform not implemented. */
  369. extern int sigstack (struct sigstack *__ss, struct sigstack *__oss)
  370. __THROW __attribute_deprecated__;
  371. # endif
  372. /* Alternate signal handler stack interface.
  373. This interface should always be preferred over `sigstack'. */
  374. extern int sigaltstack (__const struct sigaltstack *__restrict __ss,
  375. struct sigaltstack *__restrict __oss) __THROW;
  376. #endif /* use BSD or X/Open Unix. */
  377. #if defined __USE_XOPEN_EXTENDED && defined __UCLIBC_HAS_OBSOLETE_BSD_SIGNAL__
  378. /* Simplified interface for signal management. */
  379. /* Add SIG to the calling process' signal mask. */
  380. extern int sighold (int __sig) __THROW;
  381. /* Remove SIG from the calling process' signal mask. */
  382. extern int sigrelse (int __sig) __THROW;
  383. /* Set the disposition of SIG to SIG_IGN. */
  384. extern int sigignore (int __sig) __THROW;
  385. /* Set the disposition of SIG. */
  386. extern __sighandler_t sigset (int __sig, __sighandler_t __disp) __THROW;
  387. #endif
  388. #if defined __UCLIBC_HAS_THREADS__ && (defined __USE_POSIX199506 || defined __USE_UNIX98)
  389. /* Some of the functions for handling signals in threaded programs must
  390. be defined here. */
  391. # include <bits/pthreadtypes.h>
  392. # include <bits/sigthread.h>
  393. #endif
  394. /* The following functions are used internally in the C library and in
  395. other code which need deep insights. */
  396. /* Return number of available real-time signal with highest priority. */
  397. extern int __libc_current_sigrtmin (void) __THROW;
  398. /* Return number of available real-time signal with lowest priority. */
  399. extern int __libc_current_sigrtmax (void) __THROW;
  400. #ifdef _LIBC
  401. extern sigset_t _sigintr attribute_hidden;
  402. /* simplified version without parameter checking */
  403. # include <string.h>
  404. # undef __sigemptyset
  405. # define __sigemptyset(ss) (memset(ss, '\0', sizeof(sigset_t)), 0)
  406. #endif
  407. #endif /* signal.h */
  408. __END_DECLS
  409. #endif /* not signal.h */