2008-01-08 19:58:47 +00:00
|
|
|
Talk about silly byte-shaving ... the "stock" value of STACK_MIN_SIZE
|
|
|
|
does not work on s390x, and probably not on some other platforms either.
|
|
|
|
Knock it up to twice the pre-5.0.33 value to have some margin for future
|
|
|
|
changes in compiler, glibc, etc. Suspect this number if
|
|
|
|
"execution_constants" regression test fails.
|
2008-01-08 05:41:31 +00:00
|
|
|
|
2008-01-08 19:58:47 +00:00
|
|
|
As of 5.0.45 and F9, it seems 16384 isn't enough anymore either (ppc fails,
|
2008-01-08 21:53:50 +00:00
|
|
|
and seems to now need something above 24576 --- why?). STACK_MIN_SIZE has
|
2008-01-08 19:58:47 +00:00
|
|
|
to be enough less than DEFAULT_THREAD_STACK / 8 to provide some headroom,
|
|
|
|
which means we are now also forced to raise DEFAULT_THREAD_STACK for 32-bit
|
|
|
|
arches.
|
2007-02-10 00:13:28 +00:00
|
|
|
|
|
|
|
|
2008-01-08 19:58:47 +00:00
|
|
|
diff -Naur mysql-5.0.45.orig/include/my_pthread.h mysql-5.0.45/include/my_pthread.h
|
|
|
|
--- mysql-5.0.45.orig/include/my_pthread.h 2007-07-04 09:06:05.000000000 -0400
|
|
|
|
+++ mysql-5.0.45/include/my_pthread.h 2008-01-08 14:51:39.000000000 -0500
|
|
|
|
@@ -737,7 +737,7 @@
|
|
|
|
*/
|
2008-01-08 21:53:50 +00:00
|
|
|
#define DEFAULT_THREAD_STACK (512*1024L)
|
2008-01-08 19:58:47 +00:00
|
|
|
#else
|
|
|
|
-#define DEFAULT_THREAD_STACK (192*1024)
|
2008-01-08 21:53:50 +00:00
|
|
|
+#define DEFAULT_THREAD_STACK (512*1024)
|
2008-01-08 19:58:47 +00:00
|
|
|
#endif
|
|
|
|
#endif
|
|
|
|
|
2008-01-08 18:40:25 +00:00
|
|
|
diff -Naur mysql-5.0.45.orig/sql/mysql_priv.h mysql-5.0.45/sql/mysql_priv.h
|
|
|
|
--- mysql-5.0.45.orig/sql/mysql_priv.h 2007-07-04 09:06:41.000000000 -0400
|
2008-01-08 19:58:47 +00:00
|
|
|
+++ mysql-5.0.45/sql/mysql_priv.h 2008-01-08 14:51:55.000000000 -0500
|
|
|
|
@@ -173,7 +173,7 @@
|
2007-02-10 00:13:28 +00:00
|
|
|
Feel free to raise this by the smallest amount you can to get the
|
|
|
|
"execution_constants" test to pass.
|
|
|
|
*/
|
2007-07-22 20:35:24 +00:00
|
|
|
-#define STACK_MIN_SIZE 12000 // Abort if less stack during eval.
|
2008-01-08 21:53:50 +00:00
|
|
|
+#define STACK_MIN_SIZE 49152 // Abort if less stack during eval.
|
2007-02-10 00:13:28 +00:00
|
|
|
|
|
|
|
#define STACK_MIN_SIZE_FOR_OPEN 1024*80
|
2008-01-08 18:40:25 +00:00
|
|
|
#define STACK_BUFF_ALLOC 352 // For stack overrun checks
|