changeset 768:d2308670c31e

2008-03-05 Gary Benson <gbenson@redhat.com> * ports/hotspot/src/os_cpu/linux_zero/vm/globals_linux_zero.hpp (ThreadStackSize): Increased by 512kb to cope with 64kb pages.
author Gary Benson <gbenson@redhat.com>
date Wed, 05 Mar 2008 08:04:00 -0500
parents b01d3ff159c3
children ab8fd4caf00d
files ChangeLog ports/hotspot/src/os_cpu/linux_zero/vm/globals_linux_zero.hpp
diffstat 2 files changed, 8 insertions(+), 3 deletions(-) [+]
line wrap: on
line diff
--- a/ChangeLog	Wed Mar 05 02:09:12 2008 -0500
+++ b/ChangeLog	Wed Mar 05 08:04:00 2008 -0500
@@ -1,3 +1,8 @@
+2008-03-05  Gary Benson  <gbenson@redhat.com>
+
+	* ports/hotspot/src/os_cpu/linux_zero/vm/globals_linux_zero.hpp
+	(ThreadStackSize): Increased by 512kb to cope with 64kb pages.
+
 2008-03-05  Lillian Angel  <langel@redhat.com>
 
 	* .hgignore: Updated.
--- a/ports/hotspot/src/os_cpu/linux_zero/vm/globals_linux_zero.hpp	Wed Mar 05 02:09:12 2008 -0500
+++ b/ports/hotspot/src/os_cpu/linux_zero/vm/globals_linux_zero.hpp	Wed Mar 05 08:04:00 2008 -0500
@@ -1,6 +1,6 @@
 /*
  * Copyright 2000-2005 Sun Microsystems, Inc.  All Rights Reserved.
- * Copyright 2007 Red Hat, Inc.
+ * Copyright 2007, 2008 Red Hat, Inc.
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
  *
  * This code is free software; you can redistribute it and/or modify it
@@ -30,10 +30,10 @@
 
 define_pd_global(bool,  DontYieldALot,           false);
 #ifdef _LP64
-define_pd_global(intx,  ThreadStackSize,         1024);
+define_pd_global(intx,  ThreadStackSize,         1536);
 define_pd_global(intx,  VMThreadStackSize,       1024);
 #else
-define_pd_global(intx,  ThreadStackSize,         512);
+define_pd_global(intx,  ThreadStackSize,         1024);
 define_pd_global(intx,  VMThreadStackSize,       512);
 #endif // _LP64
 define_pd_global(intx,  SurvivorRatio,           8);