signum.h 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. /* Signal number definitions. Linux/Alpha version.
  2. Copyright (C) 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. /*
  18. * Linux/AXP has different signal numbers that Linux/i386: I'm trying
  19. * to make it OSF/1 binary compatible, at least for normal binaries.
  20. */
  21. #define SIGHUP 1
  22. #define SIGINT 2
  23. #define SIGQUIT 3
  24. #define SIGILL 4
  25. #define SIGTRAP 5
  26. #define SIGABRT 6
  27. #define SIGEMT 7
  28. #define SIGFPE 8
  29. #define SIGKILL 9
  30. #define SIGBUS 10
  31. #define SIGSEGV 11
  32. #define SIGSYS 12
  33. #define SIGPIPE 13
  34. #define SIGALRM 14
  35. #define SIGTERM 15
  36. #define SIGURG 16
  37. #define SIGSTOP 17
  38. #define SIGTSTP 18
  39. #define SIGCONT 19
  40. #define SIGCHLD 20
  41. #define SIGCLD SIGCHLD
  42. #define SIGTTIN 21
  43. #define SIGTTOU 22
  44. #define SIGIO 23
  45. #define SIGXCPU 24
  46. #define SIGXFSZ 25
  47. #define SIGVTALRM 26
  48. #define SIGPROF 27
  49. #define SIGWINCH 28
  50. #define SIGINFO 29
  51. #define SIGUSR1 30
  52. #define SIGUSR2 31
  53. #define SIGPOLL SIGIO
  54. #define SIGPWR SIGINFO
  55. #define SIGIOT SIGABRT
  56. #endif /* <signal.h> included. */