change thread priority back to normal

This commit is contained in:
jefft%netscape.com 1999-04-15 05:21:57 +00:00
parent 909b804663
commit 5853e59445

View File

@ -252,7 +252,7 @@ nsresult nsImapProtocol::Initialize(nsIImapHostSessionList * aHostSessionList, P
m_fetchMsgListMonitor = PR_NewMonitor();
m_thread = PR_CreateThread(PR_USER_THREAD, ImapThreadMain, (void*)
this, PR_PRIORITY_HIGH, PR_LOCAL_THREAD,
this, PR_PRIORITY_NORMAL, PR_LOCAL_THREAD,
PR_UNJOINABLE_THREAD, 0);
NS_ASSERTION(m_thread, "Unable to create imap thread.\n");
}