* win32-low.c (win32_wait): Don't use WSTOPSIG.

This commit is contained in:
Pedro Alves 2007-05-10 20:25:01 +00:00
parent 4d67a4d303
commit f72f3e600b
2 changed files with 5 additions and 6 deletions

View File

@ -1,3 +1,7 @@
2007-05-10 Pedro Alves <pedro_alves@portugalmail.pt>
* win32-low.c (win32_wait): Don't use WSTOPSIG.
2007-03-30 Pedro Alves <pedro_alves@portugalmail.pt>
* win32-low.c: Commit leftover changes from 2007-03-29.

View File

@ -1092,13 +1092,8 @@ win32_wait (char *status)
}
else if (our_status.kind == TARGET_WAITKIND_STOPPED)
{
#ifndef __MINGW32CE__
OUTMSG2 (("Child Stopped with signal = %x \n",
WSTOPSIG (our_status.value.sig)));
#else
OUTMSG2 (("Child Stopped with signal = %x \n",
OUTMSG2 (("Child Stopped with signal = %d \n",
our_status.value.sig));
#endif
*status = 'T';