hotspot/src/os_cpu/linux_x86/vm/os_linux_x86.cpp
address os::current_stack_base() {
{- -------------------------------------------
(1) current_stack_region() を呼んで, スタックの底にあたるアドレスとスタックサイズを取得し,
その2つを足した値をリターン.
---------------------------------------- -}
address bottom;
size_t size;
current_stack_region(&bottom, &size);
return (bottom + size);
}
This document is available under the GNU GENERAL PUBLIC LICENSE Version 2.