Searched refs:thr_type (Results 1 - 21 of 21) sorted by relevance

/openjdk9/hotspot/src/os/posix/vm/
H A Dos_posix.hpp57 static size_t default_stack_size(os::ThreadType thr_type);
60 static size_t get_initial_stack_size(ThreadType thr_type, size_t req_stack_size);
H A Dos_posix.cpp1171 size_t os::Posix::get_initial_stack_size(ThreadType thr_type, size_t req_stack_size) { argument
1174 stack_size = default_stack_size(thr_type);
1179 switch (thr_type) {
1202 default: // presume the unknown thr_type is a VM internal
/openjdk9/hotspot/src/os_cpu/linux_zero/vm/
H A Dos_linux_zero.cpp314 size_t os::Posix::default_stack_size(os::ThreadType thr_type) { argument
316 size_t s = (thr_type == os::compiler_thread ? 4 * M : 1 * M);
318 size_t s = (thr_type == os::compiler_thread ? 2 * M : 512 * K);
/openjdk9/hotspot/src/os_cpu/bsd_zero/vm/
H A Dos_bsd_zero.cpp289 size_t os::Posix::default_stack_size(os::ThreadType thr_type) { argument
291 size_t s = (thr_type == os::compiler_thread ? 4 * M : 1 * M);
293 size_t s = (thr_type == os::compiler_thread ? 2 * M : 512 * K);
/openjdk9/hotspot/src/os/aix/vm/
H A Dos_aix.hpp144 static size_t default_guard_size(os::ThreadType thr_type);
H A Dos_aix.cpp845 bool os::create_thread(Thread* thread, ThreadType thr_type, argument
857 osthread->set_thread_type(thr_type);
879 size_t stack_size = os::Posix::get_initial_stack_size(thr_type, req_stack_size);
883 pthread_attr_setguardsize(&attr, os::Aix::default_guard_size(thr_type));
3039 size_t os::Aix::default_guard_size(os::ThreadType thr_type) { argument
3049 return ((thr_type == java_thread || thr_type == compiler_thread) ? 0 : 4 * K);
/openjdk9/hotspot/src/os_cpu/aix_ppc/vm/
H A Dos_aix_ppc.cpp537 // Return default stack size for thr_type.
538 size_t os::Posix::default_stack_size(os::ThreadType thr_type) { argument
540 size_t s = (thr_type == os::compiler_thread ? 4 * M : 1 * M);
/openjdk9/hotspot/src/os/linux/vm/
H A Dos_linux.hpp175 static size_t default_guard_size(os::ThreadType thr_type);
H A Dos_linux.cpp696 bool os::create_thread(Thread* thread, ThreadType thr_type, argument
707 osthread->set_thread_type(thr_type);
720 size_t stack_size = os::Posix::get_initial_stack_size(thr_type, req_stack_size);
727 stack_size = align_size_up(stack_size + os::Linux::default_guard_size(thr_type), vm_page_size());
731 pthread_attr_setguardsize(&attr, os::Linux::default_guard_size(thr_type));
2859 size_t os::Linux::default_guard_size(os::ThreadType thr_type) {
2863 return ((thr_type == java_thread || thr_type == compiler_thread) ? 0 : page_size());
/openjdk9/hotspot/src/os_cpu/linux_arm/vm/
H A Dos_linux_arm.cpp535 // return default stack size for thr_type
536 size_t os::Posix::default_stack_size(os::ThreadType thr_type) { argument
538 size_t s = (thr_type == os::compiler_thread ? 2 * M : 512 * K);
/openjdk9/hotspot/src/os_cpu/linux_sparc/vm/
H A Dos_linux_sparc.cpp690 // return default stack size for thr_type
691 size_t os::Posix::default_stack_size(os::ThreadType thr_type) { argument
693 size_t s = (thr_type == os::compiler_thread ? 4 * M : 1 * M);
/openjdk9/hotspot/src/os_cpu/linux_s390/vm/
H A Dos_linux_s390.cpp536 // Return default stack size for thr_type.
537 size_t os::Posix::default_stack_size(os::ThreadType thr_type) { argument
539 size_t s = (thr_type == os::compiler_thread ? 4 * M : 1024 * K);
/openjdk9/hotspot/src/os_cpu/linux_ppc/vm/
H A Dos_linux_ppc.cpp544 // Return default stack size for thr_type.
545 size_t os::Posix::default_stack_size(os::ThreadType thr_type) { argument
547 size_t s = (thr_type == os::compiler_thread ? 4 * M : 1024 * K);
/openjdk9/hotspot/src/os_cpu/linux_x86/vm/
H A Dos_linux_x86.cpp690 // return default stack size for thr_type
691 size_t os::Posix::default_stack_size(os::ThreadType thr_type) { argument
694 size_t s = (thr_type == os::compiler_thread ? 4 * M : 1 * M);
696 size_t s = (thr_type == os::compiler_thread ? 2 * M : 512 * K);
/openjdk9/hotspot/src/os_cpu/bsd_x86/vm/
H A Dos_bsd_x86.cpp858 // return default stack size for thr_type
859 size_t os::Posix::default_stack_size(os::ThreadType thr_type) { argument
862 size_t s = (thr_type == os::compiler_thread ? 4 * M : 1 * M);
864 size_t s = (thr_type == os::compiler_thread ? 2 * M : 512 * K);
/openjdk9/hotspot/src/os_cpu/linux_aarch64/vm/
H A Dos_linux_aarch64.cpp541 // return default stack size for thr_type
542 size_t os::Posix::default_stack_size(os::ThreadType thr_type) { argument
544 size_t s = (thr_type == os::compiler_thread ? 4 * M : 1 * M);
/openjdk9/hotspot/src/share/vm/runtime/
H A Dos.hpp446 ThreadType thr_type,
H A Dthread.cpp1599 os::ThreadType thr_type = os::java_thread; local
1600 thr_type = entry_point == &compiler_thread_entry ? os::compiler_thread :
1602 os::create_thread(this, thr_type, stack_sz);
/openjdk9/hotspot/src/os/solaris/vm/
H A Dos_solaris.cpp902 // return default stack size for thr_type
903 size_t os::Posix::default_stack_size(os::ThreadType thr_type) { argument
909 bool os::create_thread(Thread* thread, ThreadType thr_type, argument
919 switch (thr_type) {
946 size_t stack_size = os::Posix::get_initial_stack_size(thr_type, req_stack_size);
/openjdk9/hotspot/src/os/bsd/vm/
H A Dos_bsd.cpp737 bool os::create_thread(Thread* thread, ThreadType thr_type, argument
748 osthread->set_thread_type(thr_type);
761 size_t stack_size = os::Posix::get_initial_stack_size(thr_type, req_stack_size);
/openjdk9/hotspot/src/os/windows/vm/
H A Dos_windows.cpp579 bool os::create_thread(Thread* thread, ThreadType thr_type, argument
601 switch (thr_type) {

Completed in 209 milliseconds