From 1e4a64d9dc7e7098bd42c643ac4eeab3d1f8e471 Mon Sep 17 00:00:00 2001
From: Martin Stjernholm <mast@lysator.liu.se>
Date: Wed, 3 Sep 1997 10:07:36 +0200
Subject: [PATCH] #fidef UNIX_THREADS around f_thread_set_concurrency

Rev: src/threads.c:1.31
---
 src/threads.c | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/src/threads.c b/src/threads.c
index 7c879223ec..a6baa002a9 100644
--- a/src/threads.c
+++ b/src/threads.c
@@ -1,5 +1,5 @@
 #include "global.h"
-RCSID("$Id: threads.c,v 1.30 1997/09/03 04:58:17 per Exp $");
+RCSID("$Id: threads.c,v 1.31 1997/09/03 08:07:36 mast Exp $");
 
 int num_threads = 1;
 int threads_disabled = 0;
@@ -130,6 +130,7 @@ void f_thread_create(INT32 args)
   }
 }
 
+#ifdef UNIX_THREADS
 void f_thread_set_concurrency(INT32 args)
 {
   int c=1;
@@ -139,6 +140,7 @@ void f_thread_set_concurrency(INT32 args)
   num_lwps=c;
   th_setconcurrency(c);
 }
+#endif
 
 void f_this_thread(INT32 args)
 {
-- 
GitLab