hotspot/src/share/vm/memory/generation.hpp
changeset 24424 2658d7834c6e
parent 23508 3b15250ea28f
child 25485 9c3d427eed01
equal deleted inserted replaced
24358:8528b67f6562 24424:2658d7834c6e
     1 /*
     1 /*
     2  * Copyright (c) 1997, 2013, Oracle and/or its affiliates. All rights reserved.
     2  * Copyright (c) 1997, 2014, Oracle and/or its affiliates. All rights reserved.
     3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
     3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
     4  *
     4  *
     5  * This code is free software; you can redistribute it and/or modify it
     5  * This code is free software; you can redistribute it and/or modify it
     6  * under the terms of the GNU General Public License version 2 only, as
     6  * under the terms of the GNU General Public License version 2 only, as
     7  * published by the Free Software Foundation.
     7  * published by the Free Software Foundation.
   420     // that guarantees monotonically non-decreasing values provided
   420     // that guarantees monotonically non-decreasing values provided
   421     // the underlying platform provides such a source. So we still
   421     // the underlying platform provides such a source. So we still
   422     // have to guard against non-monotonicity.
   422     // have to guard against non-monotonicity.
   423     NOT_PRODUCT(
   423     NOT_PRODUCT(
   424       if (now < _time_of_last_gc) {
   424       if (now < _time_of_last_gc) {
   425         warning("time warp: "INT64_FORMAT" to "INT64_FORMAT, _time_of_last_gc, now);
   425         warning("time warp: "INT64_FORMAT" to "INT64_FORMAT, (int64_t)_time_of_last_gc, (int64_t)now);
   426       }
   426       }
   427     )
   427     )
   428     return _time_of_last_gc;
   428     return _time_of_last_gc;
   429   }
   429   }
   430 
   430