Up Top

Serviceability 機能 : JVMTI の処理 : JVMTI 関数の処理 : スレッド (Thread) : SetThreadLocalStorage() 及び GetThreadLocalStorage() の処理


概要(Summary)

(See: JVMTI 仕様)

値は処理対象のスレッドに対応する JvmtiEnvThreadState オブジェクト内に格納される (See: JvmtiEnvThreadState).

処理の流れ (概要)(Execution Flows : Summary)

SetThreadLocalStorage() の処理

JvmtiEnv::SetThreadLocalStorage()
-> JvmtiEnvThreadState::set_agent_thread_local_storage_data()

GetThreadLocalStorage() の処理

JvmtiEnv::GetThreadLocalStorage()
-> JvmtiEnvThreadState::get_agent_thread_local_storage_data()

処理の流れ (詳細)(Execution Flows : Details)

JvmtiEnv::SetThreadLocalStorage()

See: here for details

JvmtiEnvThreadState::set_agent_thread_local_storage_data()

See: here for details

JvmtiEnv::GetThreadLocalStorage()

See: here for details

JvmtiEnvThreadState::get_agent_thread_local_storage_data()

See: here for details


This document is available under the GNU GENERAL PUBLIC LICENSE Version 2.