コード例 #1
0
ファイル: biasedLocking.cpp プロジェクト: gaoxiaojun/dync
static void clean_up_cached_monitor_info() {
  // Walk the thread list clearing out the cached monitors
  for (JavaThread* thr = Threads::first(); thr != NULL; thr = thr->next()) {
    thr->set_cached_monitor_info(NULL);
  }
}