signum.h 3.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  1. /* Signal number definitions. Linux version.
  2. Copyright (C) 1995, 1997, 1998 Free Software Foundation, Inc.
  3. This file is part of the GNU C Library.
  4. The GNU C Library is free software; you can redistribute it and/or
  5. modify it under the terms of the GNU Lesser General Public
  6. License as published by the Free Software Foundation; either
  7. version 2.1 of the License, or (at your option) any later version.
  8. The GNU C Library is distributed in the hope that it will be useful,
  9. but WITHOUT ANY WARRANTY; without even the implied warranty of
  10. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  11. Lesser General Public License for more details.
  12. You should have received a copy of the GNU Lesser General Public
  13. License along with the GNU C Library; if not, write to the Free
  14. Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
  15. 02111-1307 USA. */
  16. #ifdef _SIGNAL_H
  17. /* Fake signal functions. */
  18. #define SIG_ERR ((__sighandler_t) -1) /* Error return. */
  19. #define SIG_DFL ((__sighandler_t) 0) /* Default action. */
  20. #define SIG_IGN ((__sighandler_t) 1) /* Ignore signal. */
  21. #ifdef __USE_UNIX98
  22. # define SIG_HOLD ((__sighandler_t) 2) /* Add signal to hold mask. */
  23. #endif
  24. #define SIGHUP 1 /* Hangup (POSIX). */
  25. #define SIGINT 2 /* Interrupt (ANSI). */
  26. #define SIGQUIT 3 /* Quit (POSIX). */
  27. #define SIGILL 4 /* Illegal instruction (ANSI). */
  28. #define SIGTRAP 5 /* Trace trap (POSIX). */
  29. #define SIGIOT 6 /* IOT trap (4.2 BSD). */
  30. #define SIGABRT SIGIOT /* Abort (ANSI). */
  31. #define SIGEMT 7
  32. #define SIGFPE 8 /* Floating-point exception (ANSI). */
  33. #define SIGKILL 9 /* Kill, unblockable (POSIX). */
  34. #define SIGBUS 10 /* BUS error (4.2 BSD). */
  35. #define SIGSEGV 11 /* Segmentation violation (ANSI). */
  36. #define SIGSYS 12
  37. #define SIGPIPE 13 /* Broken pipe (POSIX). */
  38. #define SIGALRM 14 /* Alarm clock (POSIX). */
  39. #define SIGTERM 15 /* Termination (ANSI). */
  40. #define SIGUSR1 16 /* User-defined signal 1 (POSIX). */
  41. #define SIGUSR2 17 /* User-defined signal 2 (POSIX). */
  42. #define SIGCHLD 18 /* Child status has changed (POSIX). */
  43. #define SIGCLD SIGCHLD /* Same as SIGCHLD (System V). */
  44. #define SIGPWR 19 /* Power failure restart (System V). */
  45. #define SIGWINCH 20 /* Window size change (4.3 BSD, Sun). */
  46. #define SIGURG 21 /* Urgent condition on socket (4.2 BSD). */
  47. #define SIGIO 22 /* I/O now possible (4.2 BSD). */
  48. #define SIGPOLL SIGIO /* Pollable event occurred (System V). */
  49. #define SIGSTOP 23 /* Stop, unblockable (POSIX). */
  50. #define SIGTSTP 24 /* Keyboard stop (POSIX). */
  51. #define SIGCONT 25 /* Continue (POSIX). */
  52. #define SIGTTIN 26 /* Background read from tty (POSIX). */
  53. #define SIGTTOU 27 /* Background write to tty (POSIX). */
  54. #define SIGVTALRM 28 /* Virtual alarm clock (4.2 BSD). */
  55. #define SIGPROF 29 /* Profiling alarm clock (4.2 BSD). */
  56. #define SIGXCPU 30 /* CPU limit exceeded (4.2 BSD). */
  57. #define SIGXFSZ 31 /* File size limit exceeded (4.2 BSD). */
  58. #define _NSIG 128 /* Biggest signal number + 1
  59. (including real-time signals). */
  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. #define __SIGRTMIN 32
  65. #define __SIGRTMAX (_NSIG - 1)
  66. #endif /* <signal.h> included. */