nsJVMManager::CreateThread(): upped the priority from LOW to NORMAL.

This commit is contained in:
beard%netscape.com 1999-04-02 06:21:59 +00:00
Родитель c5bed82e41
Коммит 65b1f8f077
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -185,7 +185,7 @@ NS_METHOD
nsJVMManager::CreateThread(PRUint32* outThreadID, nsIRunnable* runnable)
{
PRThread* thread = PR_CreateThread(PR_USER_THREAD, &thread_starter, (void*) runnable,
PR_PRIORITY_LOW, PR_GLOBAL_THREAD, PR_JOINABLE_THREAD, 0);
PR_PRIORITY_NORMAL, PR_GLOBAL_THREAD, PR_JOINABLE_THREAD, 0);
*outThreadID = (PRUint32) thread;
return (thread != NULL ? NS_OK : NS_ERROR_FAILURE);
}