From 335f54aa0961c380125d3316093b52bfb220350b Mon Sep 17 00:00:00 2001 From: Eric Wasylishen Date: Fri, 15 Jul 2016 16:14:48 -0600 Subject: [PATCH] common: remove setting stack side for pthreads --- common/threads.c | 3 --- 1 file changed, 3 deletions(-) diff --git a/common/threads.c b/common/threads.c index ced50827..a12ee549 100644 --- a/common/threads.c +++ b/common/threads.c @@ -245,9 +245,6 @@ RunThreadsOn(int start, int workcnt, void *(func)(void *), void *arg) status = pthread_attr_init(&attrib); if (status) Error("pthread_attr_init failed"); - status = pthread_attr_setstacksize(&attrib, Q_STACKSIZE); - if (status) - Error("pthread_attr_setstacksize failed"); threads = malloc(sizeof(*threads) * numthreads); if (!threads)