# HG changeset patch # User Gary Benson # Date 1268310010 0 # Node ID 7dc4eeee5f69f043bde918f62073b23c0ac46674 # Parent 373dcdea587164ff50ab25a141bc22e113b1eb3d Increased ThreadStackSize by 512kb on 32-bit platforms diff -r 373dcdea5871 -r 7dc4eeee5f69 ChangeLog --- 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 + + * 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 * Makefile.am: diff -r 373dcdea5871 -r 7dc4eeee5f69 ports/hotspot/src/os_cpu/linux_zero/vm/globals_linux_zero.hpp --- 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);