diff options
author | Sergei Golubchik <serg@mariadb.org> | 2016-01-25 22:57:47 +0100 |
---|---|---|
committer | Sergei Golubchik <serg@mariadb.org> | 2016-01-25 22:57:47 +0100 |
commit | d5b1b1ac6022163fb67603db3bd4235aff1162fb (patch) | |
tree | e3d8c362c40b7f8cdbe1bca1f5e440032d2fd437 /include/my_pthread.h | |
parent | c37107380abf8f4c04c270ee7afdf8e16042c943 (diff) | |
download | mariadb-git-d5b1b1ac6022163fb67603db3bd4235aff1162fb.tar.gz |
stack too small on labrador (again!)
increase the thread stack a bit for main.signal_demo3
and sys_vars.max_sp_recursion_depth_func to stop failing
Diffstat (limited to 'include/my_pthread.h')
-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 374529c573a..37576ac3cb4 100644 --- a/include/my_pthread.h +++ b/include/my_pthread.h @@ -714,7 +714,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 (288*1024L) +#define DEFAULT_THREAD_STACK (289*1024L) #endif #define MY_PTHREAD_LOCK_READ 0 |