PR_SetThreadPriority should set the priority unconditionally.

This commit is contained in:
srinivas%netscape.com 1999-10-22 21:01:51 +00:00
parent 6b1312ff84
commit 3349152f6d

View File

@ -627,8 +627,7 @@ PR_IMPLEMENT(void) PR_SetThreadPriority(PRThread *thred, PRThreadPriority newPri
}
#endif
if (rv != -1)
thred->priority = newPri;
thred->priority = newPri;
} /* PR_SetThreadPriority */
#if 0