_string_syssigmsgs.c 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  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. const char _string_syssigmsgs[] = {
  10. /* 0: 0, 1 */ "\0"
  11. /* 1: 1, 7 */ "Hangup\0"
  12. /* 2: 8, 10 */ "Interrupt\0"
  13. /* 3: 18, 5 */ "Quit\0"
  14. /* 4: 23, 20 */ "Illegal instruction\0"
  15. /* 5: 43, 22 */ "Trace/breakpoint trap\0"
  16. /* 6: 65, 8 */ "Aborted\0"
  17. /* 7: 73, 10 */ "Bus error\0"
  18. /* 8: 83, 25 */ "Floating point exception\0"
  19. /* 9: 108, 7 */ "Killed\0"
  20. /* 10: 115, 22 */ "User defined signal 1\0"
  21. /* 11: 137, 19 */ "Segmentation fault\0"
  22. /* 12: 156, 22 */ "User defined signal 2\0"
  23. /* 13: 178, 12 */ "Broken pipe\0"
  24. /* 14: 190, 12 */ "Alarm clock\0"
  25. /* 15: 202, 11 */ "Terminated\0"
  26. /* 16: 213, 12 */ "Stack fault\0"
  27. /* 17: 225, 13 */ "Child exited\0"
  28. /* 18: 238, 10 */ "Continued\0"
  29. /* 19: 248, 17 */ "Stopped (signal)\0"
  30. /* 20: 265, 8 */ "Stopped\0"
  31. /* 21: 273, 20 */ "Stopped (tty input)\0"
  32. /* 22: 293, 21 */ "Stopped (tty output)\0"
  33. /* 23: 314, 21 */ "Urgent I/O condition\0"
  34. /* 24: 335, 24 */ "CPU time limit exceeded\0"
  35. /* 25: 359, 25 */ "File size limit exceeded\0"
  36. /* 26: 384, 22 */ "Virtual timer expired\0"
  37. /* 27: 406, 24 */ "Profiling timer expired\0"
  38. /* 28: 430, 15 */ "Window changed\0"
  39. /* 29: 445, 13 */ "I/O possible\0"
  40. /* 30: 458, 14 */ "Power failure\0"
  41. /* 31: 472, 16 */ "Bad system call"
  42. #if defined(__alpha__) || defined(__mips__) || defined(__hppa__) || defined(__sparc__)
  43. /* 32: 488, 9 */ "\0EMT trap"
  44. #endif
  45. };
  46. #endif