Fixed PR_SetThreadAffinityMask, which returned random value on Irix.

Bugzilla #21621.


git-svn-id: svn://10.0.0.236/trunk@56414 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
srinivas%netscape.com
1999-12-22 20:51:26 +00:00
parent 3476f08bd7
commit 67578ed9ed

View File

@@ -298,6 +298,8 @@ PR_IMPLEMENT(PRInt32) PR_SetThreadAffinityMask(PRThread *thread, PRUint32 mask )
#ifdef HAVE_THREAD_AFFINITY
#ifndef IRIX
return _PR_MD_SETTHREADAFFINITYMASK(thread, mask);
#else
return 0;
#endif
#else