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

/openjdk7/hotspot/src/os_cpu/bsd_zero/vm/
H A Dos_bsd_zero.cpp306 size_t os::Bsd::default_stack_size(os::ThreadType thr_type) { argument
308 size_t s = (thr_type == os::compiler_thread ? 4 * M : 1 * M);
310 size_t s = (thr_type == os::compiler_thread ? 2 * M : 512 * K);
315 size_t os::Bsd::default_guard_size(os::ThreadType thr_type) { argument
318 return (thr_type == java_thread ? 0 : page_size());
/openjdk7/hotspot/src/os_cpu/linux_zero/vm/
H A Dos_linux_zero.cpp296 size_t os::Linux::default_stack_size(os::ThreadType thr_type) { argument
298 size_t s = (thr_type == os::compiler_thread ? 4 * M : 1 * M);
300 size_t s = (thr_type == os::compiler_thread ? 2 * M : 512 * K);
305 size_t os::Linux::default_guard_size(os::ThreadType thr_type) { argument
308 return (thr_type == java_thread ? 0 : page_size());
/openjdk7/hotspot/src/os/bsd/vm/
H A Dos_bsd.hpp186 static size_t default_stack_size(os::ThreadType thr_type);
187 static size_t default_guard_size(os::ThreadType thr_type);
H A Dos_bsd.cpp1063 bool os::create_thread(Thread* thread, ThreadType thr_type, size_t stack_size) { argument
1073 osthread->set_thread_type(thr_type);
1089 stack_size = os::Bsd::default_stack_size(thr_type);
1091 switch (thr_type) {
1121 pthread_attr_setguardsize(&attr, os::Bsd::default_guard_size(thr_type));
/openjdk7/hotspot/src/os/linux/vm/
H A Dos_linux.hpp177 static size_t default_stack_size(os::ThreadType thr_type);
178 static size_t default_guard_size(os::ThreadType thr_type);
H A Dos_linux.cpp892 bool os::create_thread(Thread* thread, ThreadType thr_type, size_t stack_size) { argument
902 osthread->set_thread_type(thr_type);
918 stack_size = os::Linux::default_stack_size(thr_type);
920 switch (thr_type) {
949 pthread_attr_setguardsize(&attr, os::Linux::default_guard_size(thr_type));
/openjdk7/hotspot/src/os_cpu/bsd_x86/vm/
H A Dos_bsd_x86.cpp881 // return default stack size for thr_type
882 size_t os::Bsd::default_stack_size(os::ThreadType thr_type) { argument
885 size_t s = (thr_type == os::compiler_thread ? 4 * M : 1 * M);
887 size_t s = (thr_type == os::compiler_thread ? 2 * M : 512 * K);
892 size_t os::Bsd::default_guard_size(os::ThreadType thr_type) { argument
895 return (thr_type == java_thread ? 0 : page_size());
/openjdk7/hotspot/src/os_cpu/linux_x86/vm/
H A Dos_linux_x86.cpp650 // return default stack size for thr_type
651 size_t os::Linux::default_stack_size(os::ThreadType thr_type) { argument
654 size_t s = (thr_type == os::compiler_thread ? 4 * M : 1 * M);
656 size_t s = (thr_type == os::compiler_thread ? 2 * M : 512 * K);
661 size_t os::Linux::default_guard_size(os::ThreadType thr_type) { argument
664 return (thr_type == java_thread ? 0 : page_size());
/openjdk7/hotspot/src/os_cpu/linux_sparc/vm/
H A Dos_linux_sparc.cpp745 // return default stack size for thr_type
746 size_t os::Linux::default_stack_size(os::ThreadType thr_type) { argument
748 size_t s = (thr_type == os::compiler_thread ? 4 * M : 1 * M);
752 size_t os::Linux::default_guard_size(os::ThreadType thr_type) { argument
755 return (thr_type == java_thread ? 0 : page_size());
/openjdk7/hotspot/src/os/solaris/vm/
H A Dos_solaris.cpp1181 bool os::create_thread(Thread* thread, ThreadType thr_type, size_t stack_size) { argument
1190 switch ( thr_type ) {
1221 switch (thr_type) {
1270 (thr_type == vm_thread) ||
1271 (thr_type == cgc_thread) ||
1272 (thr_type == pgc_thread) ||
1273 (thr_type == compiler_thread && BackgroundCompilation)) ?
1322 ((thr_type == vm_thread) || (thr_type == cgc_thread) ||
1323 (thr_type
[all...]
/openjdk7/hotspot/src/share/vm/runtime/
H A Dos.hpp406 ThreadType thr_type,
H A Dthread.cpp1544 os::ThreadType thr_type = os::java_thread; local
1545 thr_type = entry_point == &compiler_thread_entry ? os::compiler_thread :
1547 os::create_thread(this, thr_type, stack_sz);
/openjdk7/hotspot/src/os/windows/vm/
H A Dos_windows.cpp510 bool os::create_thread(Thread* thread, ThreadType thr_type, size_t stack_size) { argument
531 switch (thr_type) {

Completed in 139 milliseconds