From: Ulrich Drepper Date: Thu, 30 Apr 1998 10:14:00 +0000 (+0000) Subject: Update. X-Git-Tag: cvs/libc-ud-980518~51 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=3dd2c3e24702b91473b30d5a0baf9954c37fd35b;p=thirdparty%2Fglibc.git Update. 1998-04-30 Ulrich Drepper * manager.c (pthread_free): Detect already free child. Patch by Xavier Leroy, reported by Matthias Urlichs. --- diff --git a/linuxthreads/ChangeLog b/linuxthreads/ChangeLog index e875474fc09..4f0c67e73da 100644 --- a/linuxthreads/ChangeLog +++ b/linuxthreads/ChangeLog @@ -1,3 +1,8 @@ +1998-04-30 Ulrich Drepper + + * manager.c (pthread_free): Detect already free child. + Patch by Xavier Leroy, reported by Matthias Urlichs. + 1998-04-23 Andreas Schwab * Makefile (linuxthreads-version): Renamed back from diff --git a/linuxthreads/manager.c b/linuxthreads/manager.c index 8844decab71..993df00eb44 100644 --- a/linuxthreads/manager.c +++ b/linuxthreads/manager.c @@ -308,10 +308,22 @@ static int pthread_handle_create(pthread_t *thread, const pthread_attr_t *attr, } -/* Free the resources of a thread. */ +/* Try to free the resources of a thread when requested by pthread_join + or pthread_detach on a terminated thread. */ static void pthread_free(pthread_descr th) { + pthread_descr t; + + /* Check that the thread th is still there -- pthread_reap_children + might have deallocated it already */ + t = __pthread_main_thread; + do { + if (t == th) break; + t = t->p_nextlive; + } while (t != __pthread_main_thread); + if (t != th) return; + pthread_handle handle; ASSERT(th->p_exited); /* Make the handle invalid */