summaryrefslogtreecommitdiff
path: root/thread.h
diff options
context:
space:
mode:
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