src/hotspot/share/gc/shared/gcTrace.hpp
changeset 47885 5caa1d5f74c1
parent 47216 71c04702a3d5
child 49392 2956d0ece7a9
equal deleted inserted replaced
47884:3cfab71d6c81 47885:5caa1d5f74c1
     1 /*
     1 /*
     2  * Copyright (c) 2012, 2016, Oracle and/or its affiliates. All rights reserved.
     2  * Copyright (c) 2012, 2017, 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.
   287                                      size_t additional_buffer_size,
   287                                      size_t additional_buffer_size,
   288                                      double predicted_allocation_rate,
   288                                      double predicted_allocation_rate,
   289                                      double predicted_marking_length,
   289                                      double predicted_marking_length,
   290                                      bool prediction_active);
   290                                      bool prediction_active);
   291 };
   291 };
       
   292 
       
   293 class G1FullGCTracer : public OldGCTracer {
       
   294  public:
       
   295   G1FullGCTracer() : OldGCTracer(G1Full) {}
       
   296 };
       
   297 
   292 #endif
   298 #endif
   293 
   299 
   294 class CMSTracer : public OldGCTracer {
   300 class CMSTracer : public OldGCTracer {
   295  public:
   301  public:
   296   CMSTracer() : OldGCTracer(ConcurrentMarkSweep) {}
   302   CMSTracer() : OldGCTracer(ConcurrentMarkSweep) {}