_string_syssigmsgs.c 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. /*
  2. * Copyright (C) 2002 Manuel Novoa III
  3. * Copyright (C) 2000-2005 Erik Andersen <andersen@uclibc.org>
  4. *
  5. * Licensed under the LGPL v2.1, see the file COPYING.LIB in this tarball.
  6. */
  7. #include <features.h>
  8. #ifdef __UCLIBC_HAS_SIGNUM_MESSAGES__
  9. attribute_hidden
  10. const char _string_syssigmsgs[] = {
  11. /* 0: 0, 1 */ "\0"
  12. /* 1: 1, 7 */ "Hangup\0"
  13. /* 2: 8, 10 */ "Interrupt\0"
  14. /* 3: 18, 5 */ "Quit\0"
  15. /* 4: 23, 20 */ "Illegal instruction\0"
  16. /* 5: 43, 22 */ "Trace/breakpoint trap\0"
  17. /* 6: 65, 8 */ "Aborted\0"
  18. /* 7: 73, 10 */ "Bus error\0"
  19. /* 8: 83, 25 */ "Floating point exception\0"
  20. /* 9: 108, 7 */ "Killed\0"
  21. /* 10: 115, 22 */ "User defined signal 1\0"
  22. /* 11: 137, 19 */ "Segmentation fault\0"
  23. /* 12: 156, 22 */ "User defined signal 2\0"
  24. /* 13: 178, 12 */ "Broken pipe\0"
  25. /* 14: 190, 12 */ "Alarm clock\0"
  26. /* 15: 202, 11 */ "Terminated\0"
  27. /* 16: 213, 12 */ "Stack fault\0"
  28. /* 17: 225, 13 */ "Child exited\0"
  29. /* 18: 238, 10 */ "Continued\0"
  30. /* 19: 248, 17 */ "Stopped (signal)\0"
  31. /* 20: 265, 8 */ "Stopped\0"
  32. /* 21: 273, 20 */ "Stopped (tty input)\0"
  33. /* 22: 293, 21 */ "Stopped (tty output)\0"
  34. /* 23: 314, 21 */ "Urgent I/O condition\0"
  35. /* 24: 335, 24 */ "CPU time limit exceeded\0"
  36. /* 25: 359, 25 */ "File size limit exceeded\0"
  37. /* 26: 384, 22 */ "Virtual timer expired\0"
  38. /* 27: 406, 24 */ "Profiling timer expired\0"
  39. /* 28: 430, 15 */ "Window changed\0"
  40. /* 29: 445, 13 */ "I/O possible\0"
  41. /* 30: 458, 14 */ "Power failure\0"
  42. /* 31: 472, 16 */ "Bad system call"
  43. #if defined SIGEMT
  44. /* 32: 488, 9 */ "\0EMT trap"
  45. #endif
  46. };
  47. #endif