summaryrefslogtreecommitdiffstats
path: root/src/corelib/thread/qthreadpool_p.h
diff options
context:
space:
mode:
authorMorten Johan Sørvig <morten.sorvig@qt.io>2017-06-21 11:48:09 +0200
committerMorten Johan Sørvig <morten.sorvig@qt.io>2017-08-02 21:58:54 +0000
commite44ff1978344600cd9b1f41949697f0e877fd5cd (patch)
tree3fffc14497eacd8d8e3ad27b7c7f1872f674cd23 /src/corelib/thread/qthreadpool_p.h
parent5c9c55906c858c1a8147e9e3fd074784bb68d645 (diff)
Add QThreadPool::stackSize
Allows setting the stack size for the thread pool worker threads. Implemented using QThread::stackSize. Task-number: QTBUG-2568 Change-Id: Ic7f3981289290685195bbaee977a23e0c3c49bf0 Reviewed-by: Morten Johan Sørvig <morten.sorvig@qt.io>
Diffstat (limited to 'src/corelib/thread/qthreadpool_p.h')
-rw-r--r--src/corelib/thread/qthreadpool_p.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/corelib/thread/qthreadpool_p.h b/src/corelib/thread/qthreadpool_p.h
index 0eff69d440..8b6a8cc476 100644
--- a/src/corelib/thread/qthreadpool_p.h
+++ b/src/corelib/thread/qthreadpool_p.h
@@ -96,6 +96,7 @@ public:
int maxThreadCount = QThread::idealThreadCount();
int reservedThreads = 0;
int activeThreads = 0;
+ uint stackSize = 0;
bool isExiting = false;
};