Fixed PR_SetThreadAffinityMask, which returned random value on Irix.

Bugzilla #21621.
This commit is contained in:
srinivas%netscape.com 1999-12-22 20:51:26 +00:00
parent 7e474c472c
commit d5e31fc32e

View File

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