* cygthread::detach: Improve error message.

This commit is contained in:
Christopher Faylor 2003-02-27 15:09:31 +00:00
parent 61a525994a
commit 0e7a60fef9
2 changed files with 5 additions and 1 deletions

View File

@ -1,3 +1,7 @@
2003-02-27 Christopher Faylor <cgf@redhat.com>
* cygthread::detach: Improve error message.
2003-02-26 Pierre Humblet <pierre.humblet@ieee.org>
* sec_helper.cc (get_sids_info): debug_print owner_sid and group_sid.

View File

@ -288,7 +288,7 @@ cygthread::detach (HANDLE sigwait)
w4[1] = *this;
res = WaitForSingleObject (sigwait, INFINITE);
if (res != WAIT_OBJECT_0)
system_printf ("WFSO sigwait failed, res %u", res);
system_printf ("WFSO sigwait %p failed, res %u, %E", sigwait, res);
res = WaitForMultipleObjects (2, w4, FALSE, INFINITE);
if (res != WAIT_OBJECT_0)
/* nothing */;