/hg/release/icedtea7-forest-2.4/hotspot: PR1653: Support ppc64le...
andrew at icedtea.classpath.org
andrew at icedtea.classpath.org
Tue Jan 28 02:55:30 PST 2014
changeset cbeecad5efcb in /hg/release/icedtea7-forest-2.4/hotspot
details: http://icedtea.classpath.org/hg/release/icedtea7-forest-2.4/hotspot?cmd=changeset;node=cbeecad5efcb
author: andrew
date: Thu Jan 23 22:41:21 2014 +0000
PR1653: Support ppc64le via Zero
diffstat:
src/os_cpu/linux_zero/vm/globals_linux_zero.hpp | 6 ++++--
1 files changed, 4 insertions(+), 2 deletions(-)
diffs (24 lines):
diff -r 659dc7b310ea -r cbeecad5efcb src/os_cpu/linux_zero/vm/globals_linux_zero.hpp
--- a/src/os_cpu/linux_zero/vm/globals_linux_zero.hpp Fri Jan 17 20:22:50 2014 +0000
+++ b/src/os_cpu/linux_zero/vm/globals_linux_zero.hpp Thu Jan 23 22:41:21 2014 +0000
@@ -26,6 +26,8 @@
#ifndef OS_CPU_LINUX_ZERO_VM_GLOBALS_LINUX_ZERO_HPP
#define OS_CPU_LINUX_ZERO_VM_GLOBALS_LINUX_ZERO_HPP
+#include "utilities/macros.hpp"
+
//
// Set the default values for platform dependent flags used by the
// runtime system. See globals.hpp for details of what they do.
@@ -34,9 +36,9 @@
define_pd_global(bool, DontYieldALot, false);
define_pd_global(intx, ThreadStackSize, 1664);
#ifdef _LP64
-define_pd_global(intx, VMThreadStackSize, 1024);
+define_pd_global(intx, VMThreadStackSize, PPC_ONLY(1664) NOT_PPC(1024));
#else
-define_pd_global(intx, VMThreadStackSize, 512);
+define_pd_global(intx, VMThreadStackSize, PPC_ONLY(1152) NOT_PPC(512));
#endif // _LP64
define_pd_global(intx, CompilerThreadStackSize, 0);
define_pd_global(uintx, JVMInvokeMethodSlack, 8192);
More information about the distro-pkg-dev
mailing list