Fix thread-type rotation for Win95

This commit is contained in:
larryh%netscape.com 1999-04-09 16:38:11 +00:00
parent 030bbdc092
commit 9d60d64427
2 changed files with 2 additions and 2 deletions

View File

@ -262,7 +262,7 @@ PRThread* create_new_thread(PRThreadType type,
PRInt32 native_thread = 0;
PR_ASSERT(state == PR_UNJOINABLE_THREAD);
#if (defined(_PR_PTHREADS) && !defined(_PR_DCETHREADS)) || defined(WINNT)
#if (defined(_PR_PTHREADS) && !defined(_PR_DCETHREADS)) || defined(WINNT) || defined(WIN95)
switch(index % 4) {
case 0:
scope = (PR_LOCAL_THREAD);

View File

@ -111,7 +111,7 @@ PRThread* create_new_thread(PRThreadType type,
PRInt32 native_thread = 0;
PR_ASSERT(state == PR_UNJOINABLE_THREAD);
#if (defined(_PR_PTHREADS) && !defined(_PR_DCETHREADS)) || defined(WINNT)
#if (defined(_PR_PTHREADS) && !defined(_PR_DCETHREADS)) || defined(WINNT) || defined(WIN95)
switch(index % 4) {
case 0:
scope = (PR_LOCAL_THREAD);