summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorholyfoot@mysql.com <>2005-12-15 21:00:14 +0400
committerholyfoot@mysql.com <>2005-12-15 21:00:14 +0400
commitc80ecb5501dc3d07b9e6d00874b942061e10f177 (patch)
tree66898fe0e287453d441c1041c573fb8b4a65ac7a /include
parent0a4426c0beffd58fd7343c96ff3c1c14c4c20791 (diff)
parent47b576d66192ae8552ea86594303528a506991d0 (diff)
downloadmariadb-git-c80ecb5501dc3d07b9e6d00874b942061e10f177.tar.gz
Merge bk@192.168.21.1:mysql-5.1-new
into mysql.com:/home/hf/work/mysql-5.1.clean
Diffstat (limited to 'include')
-rw-r--r--include/my_pthread.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/my_pthread.h b/include/my_pthread.h
index 6f60a6df2c1..202e047dc4e 100644
--- a/include/my_pthread.h
+++ b/include/my_pthread.h
@@ -643,10 +643,10 @@ extern int pthread_dummy(int);
#define THREAD_NAME_SIZE 10
#ifndef DEFAULT_THREAD_STACK
-#if defined(__ia64__)
+#if SIZEOF_CHARP > 4
/*
MySQL can survive with 32K, but some glibc libraries require > 128K stack
- To resolve hostnames
+ To resolve hostnames. Also recursive stored procedures needs stack.
*/
#define DEFAULT_THREAD_STACK (256*1024L)
#else