Bug 609501 - Change nsIThreadManager for bug 580096. r=jst

This commit is contained in:
Ben Turner
2010-11-03 18:41:06 -07:00
parent 7ac17226e1
commit cb761ee3fb
2 changed files with 15 additions and 1 deletions

View File

@@ -305,3 +305,11 @@ nsThreadManager::GetIsMainThread(PRBool *result)
*result = (PR_GetCurrentThread() == mMainPRThread);
return NS_OK;
}
NS_IMETHODIMP
nsThreadManager::GetIsCycleCollectorThread(PRBool *result)
{
// Not yet implemented.
*result = PR_FALSE;
return NS_OK;
}