From 8abafe3535367c20c892441b79ea527d099d7186 Mon Sep 17 00:00:00 2001 From: unknown Date: Thu, 10 Feb 2005 16:56:57 +0100 Subject: [PATCH] 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. --- include/my_pthread.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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