diff options
author | unknown <ingo@mysql.com> | 2005-02-10 16:56:57 +0100 |
---|---|---|
committer | unknown <ingo@mysql.com> | 2005-02-10 16:56:57 +0100 |
commit | 8abafe3535367c20c892441b79ea527d099d7186 (patch) | |
tree | 43a2f3b42e26432d56553b13ba23bd6f6d1a1d8c /include/my_pthread.h | |
parent | 7eedc24466c6953f4a4e8142c8b87b862933e5f8 (diff) | |
download | mariadb-git-8abafe3535367c20c892441b79ea527d099d7186.tar.gz |
Bug#8391 - "merge" fails on Linux/IA64
It was a thread stack overrun.
IA64 had its own stack size section already.
Enlarged its default stack size from 192K to 256K.
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 c4138a47b3c..f8cd3e0de71 100644 --- a/include/my_pthread.h +++ b/include/my_pthread.h @@ -637,7 +637,7 @@ extern int pthread_dummy(int); MySQL can survive with 32K, but some glibc libraries require > 128K stack To resolve hostnames */ -#define DEFAULT_THREAD_STACK (192*1024L) +#define DEFAULT_THREAD_STACK (256*1024L) #else #define DEFAULT_THREAD_STACK (192*1024) #endif |