From a6d2079f9f847f7e1605313a19f4bc7a502c84df Mon Sep 17 00:00:00 2001 From: unknown Date: Thu, 10 Feb 2005 16:56:57 +0100 Subject: 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(-) (limited to 'include/my_pthread.h') 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 -- cgit v1.2.1