about summary refs log tree commit homepage
path: root/thrpool.c
diff options
context:
space:
mode:
Diffstat (limited to 'thrpool.c')
-rw-r--r--thrpool.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/thrpool.c b/thrpool.c
index 8ed5963..929b13f 100644
--- a/thrpool.c
+++ b/thrpool.c
@@ -132,7 +132,7 @@ thrpool_add(struct mog_thrpool *tp, unsigned size, unsigned long *nr_eagain)
 
         CHECK(int, 0, pthread_attr_init(&attr));
 
-        if (stacksize > 0)
+        if (stacksize > 0 && 0)
                 CHECK(int, 0, pthread_attr_setstacksize(&attr, stacksize));
 
         thr = &tp->threads[tp->n_threads].thr;