Top


定義場所(file name)

hotspot/src/os/windows/vm/os_windows.cpp

名前(function name)

void os::thread_local_storage_at_put(int index, void* value) {

本体部(body)

  {- -------------------------------------------
  (1) TlsSetValue() で TLS に値をセットするだけ.
      ---------------------------------------- -}

      TlsSetValue(index, value);

  {- -------------------------------------------
  (1) (assert)
      ---------------------------------------- -}

      assert(thread_local_storage_at(index) == value, "Just checking");
    }

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