Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristopher Faylor <me@cgf.cx>2002-06-27 18:19:30 +0400
committerChristopher Faylor <me@cgf.cx>2002-06-27 18:19:30 +0400
commit196cdd45f6895b3901ec8925020995fbce38bd7f (patch)
tree771e07cbf472a329bf13e2d8af07b92209459eea /winsup/cygwin/thread.cc
parent5b509758a00995bcda2d1c5864f74a9f02fedbde (diff)
* thread.cc (pthread::create): Added trace printf to get CreateThread
LastError.
Diffstat (limited to 'winsup/cygwin/thread.cc')
-rw-r--r--winsup/cygwin/thread.cc5
1 files changed, 4 insertions, 1 deletions
diff --git a/winsup/cygwin/thread.cc b/winsup/cygwin/thread.cc
index 607e212f9..39fad36b4 100644
--- a/winsup/cygwin/thread.cc
+++ b/winsup/cygwin/thread.cc
@@ -399,7 +399,10 @@ pthread::create (void *(*func) (void *), pthread_attr *newattr,
this, CREATE_SUSPENDED, &thread_id);
if (!win32_obj_id)
- magic = 0;
+ {
+ thread_printf ("CreateThread failed: this %p LastError %E", this);
+ magic = 0;
+ }
else
{
InterlockedIncrement (&MT_INTERFACE->threadcount);