* exceptions.cc (set_signal_mask): Remove useless debugging output.

* fhandler.cc (fhandler_base::write): Ditto.
(fhandler_base_overlapped::close): Cancel any ongoing I/O before closing.
* syscalls.cc (write): Default to always reporting all writes in strace output
via syscall_printf.
* wait.cc (wait4): Fix debugging output.  Use standard syscall leaver output.
This commit is contained in:
Christopher Faylor
2011-12-17 07:01:21 +00:00
parent 60cd6a7798
commit ce3318344c
5 changed files with 22 additions and 17 deletions

View File

@ -81,7 +81,7 @@ wait4 (int intpid, int *status, int options, struct rusage *r)
res = cancelable_wait (waitfor);
sigproc_printf ("%d = WaitForSingleObject (...)", res);
sigproc_printf ("%d = cancelable_wait (...)", res);
if (w->ev == NULL)
{
@ -109,10 +109,7 @@ wait4 (int intpid, int *status, int options, struct rusage *r)
break;
}
sigproc_printf ("intpid %d, status %p, w->status %d, options %d, res %d",
intpid, status, w->status, options, res);
syscall_printf ("%R = wait4(%d, %p, %d, %p)", res, intpid, w->status, options, r);
w->status = -1;
if (res < 0)
sigproc_printf ("*** errno %d", get_errno ());
return res;
}