Top


定義場所(file name)

hotspot/src/share/vm/runtime/safepoint.cpp

名前(function name)

void SafepointSynchronize::update_statistics_on_cleanup_end(jlong end_time) {

本体部(body)

  {- -------------------------------------------
  (1) _safepoint_stats[_cur_stat_index] に入っている統計情報を更新する.
      ---------------------------------------- -}

      SafepointStats *spstat = &_safepoint_stats[_cur_stat_index];

      // Record how long spent in cleanup tasks.
      spstat->_time_to_do_cleanups = end_time - spstat->_time_to_do_cleanups;

      cleanup_end_time = end_time;
    }

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