Changeset 2195 for trunk/src/emx/include/sys/wait.h
- Timestamp:
- Jul 3, 2005, 10:56:24 AM (20 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/emx/include/sys/wait.h
-
Property cvs2svn:cvs-rev
changed from
1.6
to1.7
r2194 r2195 56 56 #define WIFSTOPPED(x) (_WSTATUS(x) == _WSTOPPED) 57 57 #define WSTOPSIG(x) (_W_INT(x) >> 8) 58 #define WIFSIGNALED(x) (_WSTATUS(x) != _WSTOPPED && _WSTATUS(x) != 0)58 #define WIFSIGNALED(x) (_WSTATUS(x) != 0 && !WIFSTOPPED(x) && !WIFCONTINUED(x)) /* bird: made GLIBC tests happy. */ 59 59 #define WTERMSIG(x) (_WSTATUS(x)) 60 60 #define WIFEXITED(x) (_WSTATUS(x) == 0) -
Property cvs2svn:cvs-rev
changed from
Note:
See TracChangeset
for help on using the changeset viewer.