From: Craig A. Berry Date: Sat, 17 Jan 2009 17:50:17 +0000 (-0600) Subject: Need even more stack for VMS_IA64-ithread. X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=3319632a10023824bc0ba81a0361a84f50be4b44;p=p5sagit%2Fp5-mst-13.2.git Need even more stack for VMS_IA64-ithread. --- diff --git a/thread.h b/thread.h index 7718d4b..3a059b5 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