diff options
author | Sergei Golubchik <serg@mariadb.org> | 2017-02-24 17:07:12 +0100 |
---|---|---|
committer | Sergei Golubchik <serg@mariadb.org> | 2017-03-29 00:40:21 +0200 |
commit | 2b4c485fea3ca192e3b446abfbfc190aa663d663 (patch) | |
tree | 172a6ccc6e5a4e6ad5c0ee36ce4f58dcb453b50c /include | |
parent | da5c3e03f622a31626605cd43a8623d760caf5a8 (diff) | |
download | mariadb-git-2b4c485fea3ca192e3b446abfbfc190aa663d663.tar.gz |
MDEV-11720 main.signal_demo3 fails in buildbot on labrador
increase stack size for labrador
Diffstat (limited to 'include')
-rw-r--r-- | include/my_pthread.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/my_pthread.h b/include/my_pthread.h index a38636af87d..a69e0c49f55 100644 --- a/include/my_pthread.h +++ b/include/my_pthread.h @@ -673,7 +673,7 @@ extern void my_mutex_end(void); We need to have at least 256K stack to handle calls to myisamchk_init() with the current number of keys and key parts. */ -#define DEFAULT_THREAD_STACK (291*1024L) +#define DEFAULT_THREAD_STACK (292*1024L) #endif #define MY_PTHREAD_LOCK_READ 0 |