diff options
author | unknown <holyfoot@mysql.com> | 2005-12-15 21:00:14 +0400 |
---|---|---|
committer | unknown <holyfoot@mysql.com> | 2005-12-15 21:00:14 +0400 |
commit | 49a22151cc6e948e8143f9839d4b4f6e231f7d71 (patch) | |
tree | 66898fe0e287453d441c1041c573fb8b4a65ac7a /include | |
parent | 9008814ef74336f033b3e3542d0ef4be2c3a49cb (diff) | |
parent | cb179dd38d813111e55aafc12789acc24107a632 (diff) | |
download | mariadb-git-49a22151cc6e948e8143f9839d4b4f6e231f7d71.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.h | 4 |
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 |