2011-05-04 Yao Qi <yao@codesourcery.com>

* gdb_wait.h: remove WAITTYPE and WCOREDUMP.
This commit is contained in:
Yao Qi 2011-05-04 06:28:45 +00:00
parent 9507a174f5
commit f70bd40b64
2 changed files with 4 additions and 6 deletions

View File

@ -1,3 +1,7 @@
2011-05-04 Yao Qi <yao@codesourcery.com>
* gdb_wait.h: remove WAITTYPE and WCOREDUMP.
2011-05-03 Joel Brobecker <brobecker@adacore.com>
Revert:

View File

@ -78,12 +78,6 @@
/* These are not defined in POSIX, but are used by our programs. */
#define WAITTYPE int
#ifndef WCOREDUMP
#define WCOREDUMP(w) (((w)&0200) != 0)
#endif
#ifndef WSETEXIT
# ifdef W_EXITCODE
#define WSETEXIT(w,status) ((w) = W_EXITCODE(status,0))