* cygthread::detach: Improve error message.
This commit is contained in:
parent
61a525994a
commit
0e7a60fef9
@ -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>
|
2003-02-26 Pierre Humblet <pierre.humblet@ieee.org>
|
||||||
|
|
||||||
* sec_helper.cc (get_sids_info): debug_print owner_sid and group_sid.
|
* sec_helper.cc (get_sids_info): debug_print owner_sid and group_sid.
|
||||||
|
@ -288,7 +288,7 @@ cygthread::detach (HANDLE sigwait)
|
|||||||
w4[1] = *this;
|
w4[1] = *this;
|
||||||
res = WaitForSingleObject (sigwait, INFINITE);
|
res = WaitForSingleObject (sigwait, INFINITE);
|
||||||
if (res != WAIT_OBJECT_0)
|
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);
|
res = WaitForMultipleObjects (2, w4, FALSE, INFINITE);
|
||||||
if (res != WAIT_OBJECT_0)
|
if (res != WAIT_OBJECT_0)
|
||||||
/* nothing */;
|
/* nothing */;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user