summaryrefslogtreecommitdiff
path: root/thread.h
diff options
context:
space:
mode:
authorJohn E. Malmberg <wb8tyw@qsl.net>2006-03-17 06:05:33 -0500
committerCraig A. Berry <craigberry@mac.com>2006-03-21 13:01:47 +0000
commit93a096870a2b1bc978c5a5479df6131dc5b46062 (patch)
tree22e813f90d924d7f3e3ca42ca8cc2fd2c408f0f9 /thread.h
parent5e50d56585280ea382db9d7b2b176de360fc93eb (diff)
downloadperl-93a096870a2b1bc978c5a5479df6131dc5b46062.tar.gz
[patch@27529] thread.h - VMS needs more stack
From: "John E. Malmberg" <wb8tyw@qsl.net> Message-id: <441ADE4D.2090207@qsl.net> p4raw-id: //depot/perl@27563
Diffstat (limited to 'thread.h')
-rw-r--r--thread.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/thread.h b/thread.h
index 476f310b47..aa3c86a2be 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 */