Update.
authorUlrich Drepper <drepper@redhat.com>
Fri, 21 Feb 2003 08:35:19 +0000 (08:35 +0000)
committerUlrich Drepper <drepper@redhat.com>
Fri, 21 Feb 2003 08:35:19 +0000 (08:35 +0000)
2003-02-21  Ulrich Drepper  <drepper@redhat.com>

* pthread_join.c (pthread_join): Limited checking for invalid
descriptors.
* pthread_timedjoin.c (pthread_timedjoin_np): Likewise.

nptl/ChangeLog
nptl/pthread_timedjoin.c

index f650542..2c5c338 100644 (file)
@@ -1,3 +1,9 @@
+2003-02-21  Ulrich Drepper  <drepper@redhat.com>
+
+       * pthread_join.c (pthread_join): Limited checking for invalid
+       descriptors.
+       * pthread_timedjoin.c (pthread_timedjoin_np): Likewise.
+
 2003-02-20  Ulrich Drepper  <drepper@redhat.com>
 
        * pthread_create.c (deallocate_tsd): Reset found_nonzero at the
index dd51fea..0883f94 100644 (file)
@@ -42,7 +42,7 @@ pthread_timedjoin_np (threadid, thread_return, abstime)
   int result;
 
   /* Make sure the descriptor is valid.  */
-  if (DEBUGGING_P && __find_in_stack_list (pd) == NULL)
+  if ((DEBUGGING_P && __find_in_stack_list (pd) == NULL) || pd->tid <= 0)
     /* Not a valid thread handle.  */
     return ESRCH;