hotspot/src/share/vm/memory/generation.hpp
changeset 29800 fa5f7a2bf717
parent 29474 81a5c5330d08
child 30291 54cdc5c1a9cb
equal deleted inserted replaced
29799:3ad47a56094a 29800:fa5f7a2bf717
   397     // that guarantees monotonically non-decreasing values provided
   397     // that guarantees monotonically non-decreasing values provided
   398     // the underlying platform provides such a source. So we still
   398     // the underlying platform provides such a source. So we still
   399     // have to guard against non-monotonicity.
   399     // have to guard against non-monotonicity.
   400     NOT_PRODUCT(
   400     NOT_PRODUCT(
   401       if (now < _time_of_last_gc) {
   401       if (now < _time_of_last_gc) {
   402         warning("time warp: "INT64_FORMAT" to "INT64_FORMAT, (int64_t)_time_of_last_gc, (int64_t)now);
   402         warning("time warp: " JLONG_FORMAT " to " JLONG_FORMAT, _time_of_last_gc, now);
   403       }
   403       }
   404     )
   404     )
   405     return _time_of_last_gc;
   405     return _time_of_last_gc;
   406   }
   406   }
   407 
   407