From 12ebcb03ec1b15ecdca879920d40e042697c9ffc Mon Sep 17 00:00:00 2001 From: "wtchang%redhat.com" Date: Sat, 13 Jan 2007 01:20:41 +0000 Subject: [PATCH] Bugzilla bug 362768: restored the _pt_thread_death call in _PR_Fini because the cause of the hang on Mozilla shutdown (JavaScript bug 366869) has been fixed. git-svn-id: svn://10.0.0.236/trunk@218263 18797224-902f-48f8-a5cc-f745e15eee43 --- mozilla/nsprpub/pr/src/pthreads/ptthread.c | 2 -- 1 file changed, 2 deletions(-) diff --git a/mozilla/nsprpub/pr/src/pthreads/ptthread.c b/mozilla/nsprpub/pr/src/pthreads/ptthread.c index c216f4d102a..1c4999080ac 100644 --- a/mozilla/nsprpub/pr/src/pthreads/ptthread.c +++ b/mozilla/nsprpub/pr/src/pthreads/ptthread.c @@ -987,9 +987,7 @@ static void _PR_Fini(void) _PT_PTHREAD_GETSPECIFIC(pt_book.key, thred); if (NULL != thred) { -#if 0 /* see bug 362768 comment 14 */ _pt_thread_death(thred); -#endif rv = pthread_setspecific(pt_book.key, NULL); PR_ASSERT(0 == rv); }