Bug 319999 - XPCOM Shutdown: xpcom-shutdown-threads notification and cleanup of event queues before component manager shutdown, r=darin

git-svn-id: svn://10.0.0.236/trunk@187710 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
bsmedberg%covad.net
2006-01-17 15:41:40 +00:00
parent 62364a2b10
commit 307bdb2267
9 changed files with 137 additions and 111 deletions

View File

@@ -206,11 +206,13 @@ NS_IMPL_THREADSAFE_ISUPPORTS3(nsEventQueueImpl,
NS_IMETHODIMP
nsEventQueueImpl::StopAcceptingEvents()
{
// this assertion is bogus. I should be able to shut down the eldest queue,
// as long as there are no younger children
if (mYoungerQueue) {
NS_ERROR("Should not shut down eventq while child queues are active");
mYoungerQueue->StopAcceptingEvents();
}
NS_ASSERTION(mElderQueue || !mYoungerQueue, "attempted to disable eldest queue in chain");
// XXXThis method can be called from any thread: do we need to protect this
// with a lock?
mAcceptingEvents = PR_FALSE;
CheckForDeactivation();
#if defined(PR_LOGGING) && defined(DEBUG_danm)