diff options
author | ingo@mysql.com <> | 2005-02-10 16:56:57 +0100 |
---|---|---|
committer | ingo@mysql.com <> | 2005-02-10 16:56:57 +0100 |
commit | 35f65c5a06792b05d3af6ab9e9d35f0ab1f4c6b8 (patch) | |
tree | 43a2f3b42e26432d56553b13ba23bd6f6d1a1d8c /include/my_pthread.h | |
parent | 3dde8baa4e07c168975ad25028a39fd7f1d2f446 (diff) | |
download | mariadb-git-35f65c5a06792b05d3af6ab9e9d35f0ab1f4c6b8.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 |