summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorlarryh%netscape.com <devnull@localhost>1999-04-09 16:38:11 +0000
committerlarryh%netscape.com <devnull@localhost>1999-04-09 16:38:11 +0000
commit0732ddb119ca0f1cb9bd41219e3474a2c48485dd (patch)
tree4a813e402da0ccdf08ce602e5efe29d3e6e6d8b0
parentb6c6b6e536b3d66fc5b0340e2a6ada3e3e6b1d0f (diff)
downloadnspr-hg-0732ddb119ca0f1cb9bd41219e3474a2c48485dd.tar.gz
Fix thread-type rotation for Win95SeaMonkey_M4_BASE
-rw-r--r--pr/tests/socket.c2
-rw-r--r--pr/tests/testfile.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/pr/tests/socket.c b/pr/tests/socket.c
index ec18f7f7..66befdf7 100644
--- a/pr/tests/socket.c
+++ b/pr/tests/socket.c
@@ -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);
diff --git a/pr/tests/testfile.c b/pr/tests/testfile.c
index 886973c0..b4f8a94a 100644
--- a/pr/tests/testfile.c
+++ b/pr/tests/testfile.c
@@ -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);