changeset 12490:f3b3d77a1751 jdk-9+155

8173474: AArch64: fix reported -Xss minimum Reviewed-by: aph
author adinn
date Fri, 27 Jan 2017 07:56:13 -0500
parents 7b0f663ad09c
children 23667c4b2f0e c1540251d1b7 3db03a3709f4
files src/os_cpu/linux_aarch64/vm/os_linux_aarch64.cpp
diffstat 1 files changed, 3 insertions(+), 3 deletions(-) [+]
line wrap: on
line diff
--- a/src/os_cpu/linux_aarch64/vm/os_linux_aarch64.cpp	Thu Jan 26 21:20:44 2017 +0000
+++ b/src/os_cpu/linux_aarch64/vm/os_linux_aarch64.cpp	Fri Jan 27 07:56:13 2017 -0500
@@ -475,9 +475,9 @@
 
 // Minimum usable stack sizes required to get to user code. Space for
 // HotSpot guard pages is added later.
-size_t os::Posix::_compiler_thread_min_stack_allowed = 32 * K;
-size_t os::Posix::_java_thread_min_stack_allowed = 32 * K;
-size_t os::Posix::_vm_internal_thread_min_stack_allowed = 64 * K;
+size_t os::Posix::_compiler_thread_min_stack_allowed = 72 * K;
+size_t os::Posix::_java_thread_min_stack_allowed = 72 * K;
+size_t os::Posix::_vm_internal_thread_min_stack_allowed = 72 * K;
 
 // return default stack size for thr_type
 size_t os::Posix::default_stack_size(os::ThreadType thr_type) {