From d7d9907e607cebedc40c5581c323d89778e299d5 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Fredrik=20H=C3=BCbinette=20=28Hubbe=29?= <hubbe@hubbe.net>
Date: Thu, 12 Feb 1998 16:56:17 -0800
Subject: [PATCH] bugfix?

Rev: src/threads.h:1.22
---
 src/threads.h | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/threads.h b/src/threads.h
index d89c7cd2a6..ab4a6a6c6a 100644
--- a/src/threads.h
+++ b/src/threads.h
@@ -109,7 +109,7 @@ extern struct object *thread_id;
 
 #define th_setconcurrency(X) thr_setconcurrency(X)
 
-#define th_create(ID,fun,arg) thr_create(NULL,0,fun,arg,THR_DAEMON,ID)
+#define th_create(ID,fun,arg) thr_create(NULL,0,fun,arg,THR_DAEMON|THR_DETACHED,ID)
 #define th_exit(foo) thr_exit(foo)
 #define th_self() thr_self()
 #define th_yield() thr_yield()
-- 
GitLab