summaryrefslogtreecommitdiff
path: root/firefox-1.5-thread-cleanup.patch
diff options
context:
space:
mode:
authorChristopher Aillon <caillon@fedoraproject.org>2007-09-25 19:53:15 +0000
committerChristopher Aillon <caillon@fedoraproject.org>2007-09-25 19:53:15 +0000
commit0f0b0db5c0a418360fff95853a90019654df8829 (patch)
tree7e70e931d8f53fb1b13abf2168b40ae006ef17f3 /firefox-1.5-thread-cleanup.patch
parent- Removed hardcoded MAX_PATH, PATH_MAX and MAXPATHLEN macros (diff)
downloadlibrewolf-fedora-ff-0f0b0db5c0a418360fff95853a90019654df8829.tar.gz
librewolf-fedora-ff-0f0b0db5c0a418360fff95853a90019654df8829.tar.bz2
librewolf-fedora-ff-0f0b0db5c0a418360fff95853a90019654df8829.zip
Killing some more dead patches
Diffstat (limited to 'firefox-1.5-thread-cleanup.patch')
-rw-r--r--firefox-1.5-thread-cleanup.patch28
1 files changed, 0 insertions, 28 deletions
diff --git a/firefox-1.5-thread-cleanup.patch b/firefox-1.5-thread-cleanup.patch
deleted file mode 100644
index cfa3873..0000000
--- a/firefox-1.5-thread-cleanup.patch
+++ /dev/null
@@ -1,28 +0,0 @@
-Index: mozilla/xpcom/threads/nsThread.cpp
-===================================================================
-RCS file: /cvsroot/mozilla/xpcom/threads/nsThread.cpp,v
-retrieving revision 1.58.4.2
-diff -u -r1.58.4.2 nsThread.cpp
---- mozilla/xpcom/threads/nsThread.cpp 1 Oct 2005 18:43:00 -0000 1.58.4.2
-+++ mozilla/xpcom/threads/nsThread.cpp 7 May 2007 19:10:58 -0000
-@@ -470,9 +470,17 @@
- nsThread::Shutdown()
- {
- if (gMainThread) {
-- // XXX nspr doesn't seem to be calling the main thread's destructor
-- // callback, so let's help it out:
-- nsThread::Exit(NS_STATIC_CAST(nsThread*, gMainThread));
-+ // In most recent versions of NSPR the main thread's destructor
-+ // callback will get called.
-+ // In older versions of NSPR it will not get called,
-+ // (unless we call PR_Cleanup).
-+ // Because of that we:
-+ // - call the function ourselves
-+ // - set the data pointer to NULL to ensure the function will
-+ // not get called again by NSPR
-+ // The PR_SetThreadPrivate call does both of these.
-+ // See also bugs 379550, 362768.
-+ PR_SetThreadPrivate(kIThreadSelfIndex, NULL);
- nsrefcnt cnt;
- NS_RELEASE2(gMainThread, cnt);
- NS_WARN_IF_FALSE(cnt == 0, "Main thread being held past XPCOM shutdown.");
bgstack15