summaryrefslogtreecommitdiff
path: root/libs/pbd/pthread_utils.cc
diff options
context:
space:
mode:
Diffstat (limited to 'libs/pbd/pthread_utils.cc')
-rw-r--r--libs/pbd/pthread_utils.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/libs/pbd/pthread_utils.cc b/libs/pbd/pthread_utils.cc
index f655dbd5b4..1d179f9cac 100644
--- a/libs/pbd/pthread_utils.cc
+++ b/libs/pbd/pthread_utils.cc
@@ -132,7 +132,7 @@ pthread_create_and_store (string name, pthread_t *thread, void * (*start_routin
// set default stack size to sensible default for memlocking
pthread_attr_init(&default_attr);
- pthread_attr_setstacksize(&default_attr, 500000);
+ pthread_attr_setstacksize(&default_attr, 0x80000); // 512kB
ThreadStartWithName* ts = new ThreadStartWithName (start_routine, arg, name);