signum.h 2.9 KB

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