summaryrefslogtreecommitdiffstats
path: root/Python/thread_pthread.h
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>1997-04-30 19:59:22 (GMT)
committerGuido van Rossum <guido@python.org>1997-04-30 19:59:22 (GMT)
commitf4806c2a85dccb94a183b584f99b6b5b8f40e6db (patch)
treeae5ea399a61f479aaa5c967a3ffc2b18907f5196 /Python/thread_pthread.h
parent03ef6478476c284d3e60d81150610f44290b8d79 (diff)
downloadcpython-f4806c2a85dccb94a183b584f99b6b5b8f40e6db.zip
cpython-f4806c2a85dccb94a183b584f99b6b5b8f40e6db.tar.gz
cpython-f4806c2a85dccb94a183b584f99b6b5b8f40e6db.tar.bz2
Add detach call so threads are GC'ed.
Diffstat (limited to 'Python/thread_pthread.h')
-rw-r--r--Python/thread_pthread.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/Python/thread_pthread.h b/Python/thread_pthread.h
index c83cd2d..0e2ca11 100644
--- a/Python/thread_pthread.h
+++ b/Python/thread_pthread.h
@@ -98,6 +98,8 @@ int start_new_thread _P2(func, void (*func) _P((void *)), arg, void *arg)
init_thread();
success = pthread_create(&th, pthread_attr_default,
(void* (*) _P((void *)))func, arg);
+ if (success >= 0)
+ pthread_detach(th);
return success < 0 ? 0 : 1;
}