changeset 1701:7dc4eeee5f69

Increased ThreadStackSize by 512kb on 32-bit platforms
author Gary Benson <gbenson@redhat.com>
date Thu, 11 Mar 2010 12:20:10 +0000
parents 373dcdea5871
children 6cb729c4a876
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	Thu Mar 11 01:51:53 2010 +0000
+++ b/ChangeLog	Thu Mar 11 12:20:10 2010 +0000
@@ -1,3 +1,9 @@
+2010-03-11  Gary Benson  <gbenson@redhat.com>
+
+	* ports/hotspot/src/os_cpu/linux_zero/vm/globals_linux_zero.hpp
+	(ThreadStackSize): Increased by 512kb on 32-bit platforms so as
+	to work on systems with 64kb page sizes.
+
 2010-03-10  Andrew John Hughes  <ahughes@redhat.com>
 
 	* Makefile.am:
--- a/ports/hotspot/src/os_cpu/linux_zero/vm/globals_linux_zero.hpp	Thu Mar 11 01:51:53 2010 +0000
+++ b/ports/hotspot/src/os_cpu/linux_zero/vm/globals_linux_zero.hpp	Thu Mar 11 12:20:10 2010 +0000
@@ -1,6 +1,6 @@
 /*
  * Copyright 2000-2005 Sun Microsystems, Inc.  All Rights Reserved.
- * Copyright 2007, 2008 Red Hat, Inc.
+ * Copyright 2007, 2008, 2010 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
@@ -29,11 +29,10 @@
 //
 
 define_pd_global(bool,  DontYieldALot,           false);
+define_pd_global(intx,  ThreadStackSize,         1536);
 #ifdef _LP64
-define_pd_global(intx,  ThreadStackSize,         1536);
 define_pd_global(intx,  VMThreadStackSize,       1024);
 #else
-define_pd_global(intx,  ThreadStackSize,         1024);
 define_pd_global(intx,  VMThreadStackSize,       512);
 #endif // _LP64
 define_pd_global(intx,  SurvivorRatio,           8);