summaryrefslogtreecommitdiff
path: root/ptw32_threadStart.c
diff options
context:
space:
mode:
authorrpj <rpj>2002-07-30 17:18:25 +0000
committerrpj <rpj>2002-07-30 17:18:25 +0000
commitd9bad66cbb8823ad786ac480330db1c05e85557a (patch)
tree512085bea583cab23c9f32646921fbda66aa447d /ptw32_threadStart.c
parentccd0f86e370fa71acd47c17cb9579877403c81d1 (diff)
* pthread_cond_wait.c (ptw32_cond_wait_cleanup):
Remove code designed to avoid/prevent spurious wakeup problems. It is believed that the sem_timedwait() call is consuming a CV signal that it shouldn't and this is breaking the avoidance logic.
Diffstat (limited to 'ptw32_threadStart.c')
-rw-r--r--ptw32_threadStart.c51
1 files changed, 22 insertions, 29 deletions
diff --git a/ptw32_threadStart.c b/ptw32_threadStart.c
index 442e6ec..96cadf9 100644
--- a/ptw32_threadStart.c
+++ b/ptw32_threadStart.c
@@ -7,32 +7,32 @@
*
* --------------------------------------------------------------------------
*
- * Pthreads-win32 - POSIX Threads Library for Win32
- * Copyright(C) 1998 John E. Bossom
- * Copyright(C) 1999,2002 Pthreads-win32 contributors
+ * Pthreads-win32 - POSIX Threads Library for Win32
+ * Copyright(C) 1998 John E. Bossom
+ * Copyright(C) 1999,2002 Pthreads-win32 contributors
*
- * Contact Email: rpj@ise.canberra.edu.au
+ * Contact Email: rpj@ise.canberra.edu.au
*
- * The current list of contributors is contained
- * in the file CONTRIBUTORS included with the source
- * code distribution. The list can also be seen at the
- * following World Wide Web location:
- * http://sources.redhat.com/pthreads-win32/contributors.html
+ * The current list of contributors is contained
+ * in the file CONTRIBUTORS included with the source
+ * code distribution. The list can also be seen at the
+ * following World Wide Web location:
+ * http://sources.redhat.com/pthreads-win32/contributors.html
*
- * This library is free software; you can redistribute it and/or
- * modify it under the terms of the GNU Lesser General Public
- * License as published by the Free Software Foundation; either
- * version 2 of the License, or (at your option) any later version.
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License as published by the Free Software Foundation; either
+ * version 2 of the License, or (at your option) any later version.
*
- * This library is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
- * Lesser General Public License for more details.
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
*
- * You should have received a copy of the GNU Lesser General Public
- * License along with this library in the file COPYING.LIB;
- * if not, write to the Free Software Foundation, Inc.,
- * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library in the file COPYING.LIB;
+ * if not, write to the Free Software Foundation, Inc.,
+ * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
*/
#include "pthread.h"
@@ -323,13 +323,6 @@ ptw32_threadStart (void * vthreadParms)
#endif /* __CLEANUP_C */
#endif /* __CLEANUP_SEH */
- (void) pthread_mutex_lock(&self->cancelLock);
- self->state = PThreadStateLast;
- (void) pthread_mutex_unlock(&self->cancelLock);
-
-
- (void) pthread_mutex_destroy(&self->cancelLock);
-
#if 1
if (self->detachState == PTHREAD_CREATE_DETACHED)
{
@@ -341,7 +334,7 @@ ptw32_threadStart (void * vthreadParms)
*
* Note that implicitly created pthreads (those created
* for Win32 threads which have called pthreads routines)
- * must be cleaned up explicitly by the application
+ * must be cleaned up explicitly by the application
* (by calling pthread_win32_thread_detach_np()) if
* this library has been statically linked. For the dll,
* dllMain will do the cleanup automatically.