waitstatus.h 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105
  1. /* Definitions of status bits for `wait' et al.
  2. Copyright (C) 1992-2016 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. #if !defined _SYS_WAIT_H && !defined _STDLIB_H
  16. # error "Never include <bits/waitstatus.h> directly; use <sys/wait.h> instead."
  17. #endif
  18. /* Everything extant so far uses these same bits. */
  19. /* If WIFEXITED(STATUS), the low-order 8 bits of the status. */
  20. #define __WEXITSTATUS(status) (((status) & 0xff00) >> 8)
  21. /* If WIFSIGNALED(STATUS), the terminating signal. */
  22. #define __WTERMSIG(status) ((status) & 0x7f)
  23. /* If WIFSTOPPED(STATUS), the signal that stopped the child. */
  24. #define __WSTOPSIG(status) __WEXITSTATUS(status)
  25. /* Nonzero if STATUS indicates normal termination. */
  26. #define __WIFEXITED(status) (__WTERMSIG(status) == 0)
  27. /* Nonzero if STATUS indicates termination by a signal. */
  28. #define __WIFSIGNALED(status) \
  29. (((signed char) (((status) & 0x7f) + 1) >> 1) > 0)
  30. /* Nonzero if STATUS indicates the child is stopped. */
  31. #define __WIFSTOPPED(status) (((status) & 0xff) == 0x7f)
  32. /* Nonzero if STATUS indicates the child continued after a stop. We only
  33. define this if <bits/waitflags.h> provides the WCONTINUED flag bit. */
  34. #ifdef WCONTINUED
  35. # define __WIFCONTINUED(status) ((status) == __W_CONTINUED)
  36. #endif
  37. /* Nonzero if STATUS indicates the child dumped core. */
  38. #define __WCOREDUMP(status) ((status) & __WCOREFLAG)
  39. /* Macros for constructing status values. */
  40. #define __W_EXITCODE(ret, sig) ((ret) << 8 | (sig))
  41. #define __W_STOPCODE(sig) ((sig) << 8 | 0x7f)
  42. #define __W_CONTINUED 0xffff
  43. #define __WCOREFLAG 0x80
  44. #ifdef __USE_MISC
  45. # include <endian.h>
  46. union wait
  47. {
  48. int w_status;
  49. struct
  50. {
  51. # if __BYTE_ORDER == __LITTLE_ENDIAN
  52. unsigned int __w_termsig:7; /* Terminating signal. */
  53. unsigned int __w_coredump:1; /* Set if dumped core. */
  54. unsigned int __w_retcode:8; /* Return code if exited normally. */
  55. unsigned int:16;
  56. # endif /* Little endian. */
  57. # if __BYTE_ORDER == __BIG_ENDIAN
  58. unsigned int:16;
  59. unsigned int __w_retcode:8;
  60. unsigned int __w_coredump:1;
  61. unsigned int __w_termsig:7;
  62. # endif /* Big endian. */
  63. } __wait_terminated;
  64. struct
  65. {
  66. # if __BYTE_ORDER == __LITTLE_ENDIAN
  67. unsigned int __w_stopval:8; /* W_STOPPED if stopped. */
  68. unsigned int __w_stopsig:8; /* Stopping signal. */
  69. unsigned int:16;
  70. # endif /* Little endian. */
  71. # if __BYTE_ORDER == __BIG_ENDIAN
  72. unsigned int:16;
  73. unsigned int __w_stopsig:8; /* Stopping signal. */
  74. unsigned int __w_stopval:8; /* W_STOPPED if stopped. */
  75. # endif /* Big endian. */
  76. } __wait_stopped;
  77. };
  78. # define w_termsig __wait_terminated.__w_termsig
  79. # define w_coredump __wait_terminated.__w_coredump
  80. # define w_retcode __wait_terminated.__w_retcode
  81. # define w_stopsig __wait_stopped.__w_stopsig
  82. # define w_stopval __wait_stopped.__w_stopval
  83. #endif /* Use misc. */