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-10-14 06:37:49 +0400
committerChristopher Faylor <me@cgf.cx>2002-10-14 06:37:49 +0400
commita7a5d0ba3742911e0ab9dfeed077631f25bb257f (patch)
tree197c4c67ceee68a2e304b5f2c4d8f01a0b543834
parent5c2b46f4a80af84d5676c321687c121dc61dd21b (diff)
* cygthread.cc (cygthread::stub): Don't zero __name here. That introduces a
race.
-rw-r--r--winsup/cygwin/ChangeLog5
-rw-r--r--winsup/cygwin/cygthread.cc21
2 files changed, 18 insertions, 8 deletions
diff --git a/winsup/cygwin/ChangeLog b/winsup/cygwin/ChangeLog
index df2e66ba6..8eb5d9367 100644
--- a/winsup/cygwin/ChangeLog
+++ b/winsup/cygwin/ChangeLog
@@ -1,5 +1,10 @@
2002-10-13 Christopher Faylor <cgf@redhat.com>
+ * cygthread.cc (cygthread::stub): Don't zero __name here. That
+ introduces a race.
+
+2002-10-13 Christopher Faylor <cgf@redhat.com>
+
* include/cygwin/version.h: Bump DLL minor number.
2002-10-13 Christopher Faylor <cgf@redhat.com>
diff --git a/winsup/cygwin/cygthread.cc b/winsup/cygwin/cygthread.cc
index ec217b792..ce64a746c 100644
--- a/winsup/cygwin/cygthread.cc
+++ b/winsup/cygwin/cygthread.cc
@@ -44,21 +44,26 @@ cygthread::stub (VOID *arg)
}
while (1)
{
- if (!info->func || initialized < 0)
- ExitThread (0);
+ if (!info->__name)
+ system_printf ("errnoneous thread activation");
+ else
+ {
+ if (!info->func || initialized < 0)
+ ExitThread (0);
- /* Cygwin threads should not call ExitThread directly */
- info->func (info->arg == cygself ? info : info->arg);
- /* ...so the above should always return */
+ /* Cygwin threads should not call ExitThread directly */
+ info->func (info->arg == cygself ? info : info->arg);
+ /* ...so the above should always return */
#ifdef DEBUGGING
- info->func = NULL; // catch erroneous activation
+ info->func = NULL; // catch erroneous activation
#endif
- SetEvent (info->ev);
- info->__name = NULL;
+ SetEvent (info->ev);
+ }
switch (WaitForSingleObject (info->thread_sync, INFINITE))
{
case WAIT_OBJECT_0:
+ // ResetEvent (info->thread_sync);
continue;
default:
api_fatal ("WFSO failed, %E");