summaryrefslogtreecommitdiff
path: root/thread.h
diff options
context:
space:
mode:
authorCraig A. Berry <craigberry@mac.com>2009-01-17 11:50:17 -0600
committerCraig A. Berry <craigberry@mac.com>2009-01-17 11:50:17 -0600
commit3319632a10023824bc0ba81a0361a84f50be4b44 (patch)
treefa6be2663652fb8ff4d00f23f57d3e8abcfc78e6 /thread.h
parentc53941b4d2269daacec193419928404af8dcae8b (diff)
downloadperl-3319632a10023824bc0ba81a0361a84f50be4b44.tar.gz
Need even more stack for VMS_IA64-ithread.
Diffstat (limited to 'thread.h')
-rw-r--r--thread.h6
1 files changed, 5 insertions, 1 deletions
diff --git a/thread.h b/thread.h
index 7718d4befd..3a059b5f86 100644
--- a/thread.h
+++ b/thread.h
@@ -100,7 +100,11 @@
#ifdef __VMS
/* Default is 1024 on VAX, 8192 otherwise */
-# define THREAD_CREATE_NEEDS_STACK (32*1024)
+# ifdef __ia64
+# define THREAD_CREATE_NEEDS_STACK (48*1024)
+# else
+# define THREAD_CREATE_NEEDS_STACK (32*1024)
+# endif
#endif
#ifdef I_MACH_CTHREADS