< prev index next >

hotspot/src/os_cpu/linux_sparc/vm/os_linux_sparc.cpp

Print this page

        

*** 724,737 **** } /////////////////////////////////////////////////////////////////////////////// // thread stack ! size_t os::Linux::min_stack_allowed = 128 * K; // return default stack size for thr_type ! size_t os::Linux::default_stack_size(os::ThreadType thr_type) { // default stack size (compiler thread needs larger stack) size_t s = (thr_type == os::compiler_thread ? 4 * M : 1 * M); return s; } --- 724,739 ---- } /////////////////////////////////////////////////////////////////////////////// // thread stack ! size_t os::Posix::_compiler_thread_min_stack_allowed = 128 * K; ! size_t os::Posix::_java_thread_min_stack_allowed = 128 * K; ! size_t os::Posix::_vm_internal_thread_min_stack_allowed = 128 * K; // return default stack size for thr_type ! size_t os::Posix::default_stack_size(os::ThreadType thr_type) { // default stack size (compiler thread needs larger stack) size_t s = (thr_type == os::compiler_thread ? 4 * M : 1 * M); return s; }
< prev index next >