summaryrefslogtreecommitdiffstats
path: root/lib/base
diff options
context:
space:
mode:
authorNathan Kinder <nkinder@redhat.com>2005-04-18 20:45:01 +0000
committerNathan Kinder <nkinder@redhat.com>2005-04-18 20:45:01 +0000
commite92ef06ca32689a87e4c0c9eb15b1df0f442d98e (patch)
treec9cdea077e7bd147732b01242ca99a60c06dd00d /lib/base
parent365804864dd9f87d93dfc7d6c557f5bd1ad2397e (diff)
downloadds-e92ef06ca32689a87e4c0c9eb15b1df0f442d98e.tar.gz
ds-e92ef06ca32689a87e4c0c9eb15b1df0f442d98e.tar.xz
ds-e92ef06ca32689a87e4c0c9eb15b1df0f442d98e.zip
HP-UX IPF Porting changes
Diffstat (limited to 'lib/base')
-rw-r--r--lib/base/systhr.cpp5
1 files changed, 4 insertions, 1 deletions
diff --git a/lib/base/systhr.cpp b/lib/base/systhr.cpp
index d9b69521..134ae2b4 100644
--- a/lib/base/systhr.cpp
+++ b/lib/base/systhr.cpp
@@ -66,8 +66,11 @@ typedef struct {
#if defined (USE_NSPR)
-
+#if defined(__hpux) && defined(__ia64)
+#define DEFAULT_STACKSIZE (256*1024)
+#else
#define DEFAULT_STACKSIZE (64*1024)
+#endif
static unsigned long _systhr_stacksize = DEFAULT_STACKSIZE;