src/share/vm/gc_implementation/shared/gcTraceTime.hpp

Print this page




   9  * This code is distributed in the hope that it will be useful, but WITHOUT
  10  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  11  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  12  * version 2 for more details (a copy is included in the LICENSE file that
  13  * accompanied this code).
  14  *
  15  * You should have received a copy of the GNU General Public License version
  16  * 2 along with this work; if not, write to the Free Software Foundation,
  17  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  18  *
  19  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  20  * or visit www.oracle.com if you need additional information or have any
  21  * questions.
  22  *
  23  */
  24 
  25 #ifndef SHARE_VM_GC_IMPLEMENTATION_SHARED_GCTRACETIME_HPP
  26 #define SHARE_VM_GC_IMPLEMENTATION_SHARED_GCTRACETIME_HPP
  27 
  28 #include "prims/jni_md.h"

  29 
  30 class GCTimer;
  31 
  32 class GCTraceTime {
  33   const char* _title;
  34   bool _doit;
  35   bool _print_cr;
  36   GCTimer* _timer;
  37   jlong _start_counter;
  38 
  39  public:
  40   GCTraceTime(const char* title, bool doit, bool print_cr, GCTimer* timer);
  41   ~GCTraceTime();
  42 };
  43 
  44 #endif // SHARE_VM_GC_IMPLEMENTATION_SHARED_GCTRACETIME_HPP


   9  * This code is distributed in the hope that it will be useful, but WITHOUT
  10  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  11  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  12  * version 2 for more details (a copy is included in the LICENSE file that
  13  * accompanied this code).
  14  *
  15  * You should have received a copy of the GNU General Public License version
  16  * 2 along with this work; if not, write to the Free Software Foundation,
  17  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  18  *
  19  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  20  * or visit www.oracle.com if you need additional information or have any
  21  * questions.
  22  *
  23  */
  24 
  25 #ifndef SHARE_VM_GC_IMPLEMENTATION_SHARED_GCTRACETIME_HPP
  26 #define SHARE_VM_GC_IMPLEMENTATION_SHARED_GCTRACETIME_HPP
  27 
  28 #include "prims/jni_md.h"
  29 #include "utilities/ticks.hpp"
  30 
  31 class GCTimer;
  32 
  33 class GCTraceTime {
  34   const char* _title;
  35   bool _doit;
  36   bool _print_cr;
  37   GCTimer* _timer;
  38   Ticks _start_counter;
  39 
  40  public:
  41   GCTraceTime(const char* title, bool doit, bool print_cr, GCTimer* timer);
  42   ~GCTraceTime();
  43 };
  44 
  45 #endif // SHARE_VM_GC_IMPLEMENTATION_SHARED_GCTRACETIME_HPP