Searched defs:threadStackSizeInBytes (Results 1 - 3 of 3) sorted by relevance

/openjdk7/hotspot/src/os/bsd/vm/
H A Dos_bsd.cpp4732 size_t threadStackSizeInBytes = ThreadStackSize * K; local
4733 if (threadStackSizeInBytes != 0 &&
4734 threadStackSizeInBytes < os::Bsd::min_stack_allowed) {
4743 JavaThread::set_stack_size_at_create(round_to(threadStackSizeInBytes,
/openjdk7/hotspot/src/os/linux/vm/
H A Dos_linux.cpp4544 size_t threadStackSizeInBytes = ThreadStackSize * K; local
4545 if (threadStackSizeInBytes != 0 &&
4546 threadStackSizeInBytes < os::Linux::min_stack_allowed) {
4555 JavaThread::set_stack_size_at_create(round_to(threadStackSizeInBytes,
/openjdk7/hotspot/src/os/solaris/vm/
H A Dos_solaris.cpp5400 size_t threadStackSizeInBytes = ThreadStackSize * K; local
5401 if (threadStackSizeInBytes != 0 &&
5402 threadStackSizeInBytes < os::Solaris::min_stack_allowed) {
5416 threadStackSizeInBytes = (threadStackSizeInBytes != 0)
5417 ? threadStackSizeInBytes +
5420 ThreadStackSize = threadStackSizeInBytes/K;
5425 JavaThread::set_stack_size_at_create(round_to(threadStackSizeInBytes,

Completed in 88 milliseconds