From: John E. Malmberg Date: Fri, 17 Mar 2006 11:05:33 +0000 (-0500) Subject: [patch@27529] thread.h - VMS needs more stack X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=93a096870a2b1bc978c5a5479df6131dc5b46062;p=p5sagit%2Fp5-mst-13.2.git [patch@27529] thread.h - VMS needs more stack From: "John E. Malmberg" Message-id: <441ADE4D.2090207@qsl.net> p4raw-id: //depot/perl@27563 --- diff --git a/thread.h b/thread.h index 476f310..aa3c86a 100644 --- a/thread.h +++ b/thread.h @@ -98,6 +98,11 @@ # define THREAD_CREATE_NEEDS_STACK (32*1024) #endif +#ifdef __VMS + /* Default is 1024 on VAX, 8192 otherwise */ +# define THREAD_CREATE_NEEDS_STACK (32*1024) +#endif + #ifdef I_MACH_CTHREADS /* cthreads interface */