signum.h 2.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. /* Signal number definitions. Linux/HPPA version.
  2. Copyright (C) 1995,1996,1997,1998,1999,2003 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, see
  14. <http://www.gnu.org/licenses/>. */
  15. #ifdef _SIGNAL_H
  16. #define SIGHUP 1 /* Hangup (POSIX). */
  17. #define SIGINT 2 /* Interrupt (ANSI). */
  18. #define SIGQUIT 3 /* Quit (POSIX). */
  19. #define SIGILL 4 /* Illegal instruction (ANSI). */
  20. #define SIGTRAP 5 /* Trace trap (POSIX). */
  21. #define SIGABRT 6 /* Abort (ANSI). */
  22. #define SIGIOT 6 /* IOT trap (4.2 BSD). */
  23. #define SIGEMT 7
  24. #define SIGFPE 8 /* Floating-point exception (ANSI). */
  25. #define SIGKILL 9 /* Kill, unblockable (POSIX). */
  26. #define SIGBUS 10 /* BUS error (4.2 BSD). */
  27. #define SIGSEGV 11 /* Segmentation violation (ANSI). */
  28. #define SIGSYS 12 /* Bad system call. */
  29. #define SIGPIPE 13 /* Broken pipe (POSIX). */
  30. #define SIGALRM 14 /* Alarm clock (POSIX). */
  31. #define SIGTERM 15 /* Termination (ANSI). */
  32. #define SIGUSR1 16 /* User-defined signal 1 (POSIX). */
  33. #define SIGUSR2 17 /* User-defined signal 2 (POSIX). */
  34. #define SIGCLD SIGCHLD /* Same as SIGCHLD (System V). */
  35. #define SIGCHLD 18 /* Child status has changed (POSIX). */
  36. #define SIGPWR 19 /* Power failure restart (System V). */
  37. #define SIGVTALRM 20 /* Virtual alarm clock (4.2 BSD). */
  38. #define SIGPROF 21 /* Profiling alarm clock (4.2 BSD). */
  39. #define SIGPOLL SIGIO /* Pollable event occurred (System V). */
  40. #define SIGIO 22 /* I/O now possible (4.2 BSD). */
  41. #define SIGWINCH 23 /* Window size change (4.3 BSD, Sun). */
  42. #define SIGSTOP 24 /* Stop, unblockable (POSIX). */
  43. #define SIGTSTP 25 /* Keyboard stop (POSIX). */
  44. #define SIGCONT 26 /* Continue (POSIX). */
  45. #define SIGTTIN 27 /* Background read from tty (POSIX). */
  46. #define SIGTTOU 28 /* Background write to tty (POSIX). */
  47. #define SIGURG 29 /* Urgent condition on socket (4.2 BSD). */
  48. #define SIGLOST 30 /* Operating System Has Lost (HP/UX). */
  49. #define SIGUNUSED 31
  50. #define SIGXCPU 33 /* CPU limit exceeded (4.2 BSD). */
  51. #define SIGXFSZ 34 /* File size limit exceeded (4.2 BSD). */
  52. #define SIGSTKFLT 36 /* Stack fault. */
  53. #define __SIGRTMIN 37
  54. #endif /* <signal.h> included. */