Top


定義場所(file name)

hotspot/src/share/vm/prims/jvmtiRawMonitor.hpp

名前(function name)

  static void destroy(JvmtiRawMonitor *monitor) {

本体部(body)

  {- -------------------------------------------
  (1) monitor 引数で指定された JvmtiRawMonitor オブジェクトを monitors() 中から取り除く
      (複数入っていた場合は全て取り除く).
      ---------------------------------------- -}

        while (monitors()->contains(monitor)) {
          monitors()->remove(monitor);
        }
      }

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