@@ -2799,7 +2799,7 @@ void ShenandoahHeap::entry_mark() {
2799
2799
TraceCollectorStats tcs (monitoring_support ()->concurrent_collection_counters ());
2800
2800
2801
2801
const char * msg = conc_mark_event_message ();
2802
- GCTraceTime (Info, gc) time (msg, NULL , GCCause::_no_gc, true );
2802
+ GCTraceTime (Info, gc) time (msg);
2803
2803
EventMark em (" %s" , msg);
2804
2804
2805
2805
ShenandoahWorkerScope scope (workers (),
@@ -2815,7 +2815,7 @@ void ShenandoahHeap::entry_evac() {
2815
2815
TraceCollectorStats tcs (monitoring_support ()->concurrent_collection_counters ());
2816
2816
2817
2817
static const char * msg = " Concurrent evacuation" ;
2818
- GCTraceTime (Info, gc) time (msg, NULL , GCCause::_no_gc, true );
2818
+ GCTraceTime (Info, gc) time (msg);
2819
2819
EventMark em (" %s" , msg);
2820
2820
2821
2821
ShenandoahWorkerScope scope (workers (),
@@ -2830,7 +2830,7 @@ void ShenandoahHeap::entry_updaterefs() {
2830
2830
ShenandoahGCPhase phase (ShenandoahPhaseTimings::conc_update_refs);
2831
2831
2832
2832
static const char * msg = " Concurrent update references" ;
2833
- GCTraceTime (Info, gc) time (msg, NULL , GCCause::_no_gc, true );
2833
+ GCTraceTime (Info, gc) time (msg);
2834
2834
EventMark em (" %s" , msg);
2835
2835
2836
2836
ShenandoahWorkerScope scope (workers (),
@@ -2845,7 +2845,7 @@ void ShenandoahHeap::entry_roots() {
2845
2845
ShenandoahGCPhase phase (ShenandoahPhaseTimings::conc_roots);
2846
2846
2847
2847
static const char * msg = " Concurrent roots processing" ;
2848
- GCTraceTime (Info, gc) time (msg, NULL , GCCause::_no_gc, true );
2848
+ GCTraceTime (Info, gc) time (msg);
2849
2849
EventMark em (" %s" , msg);
2850
2850
2851
2851
ShenandoahWorkerScope scope (workers (),
@@ -2873,7 +2873,7 @@ void ShenandoahHeap::entry_reset() {
2873
2873
ShenandoahGCPhase phase (ShenandoahPhaseTimings::conc_reset);
2874
2874
2875
2875
static const char * msg = " Concurrent reset" ;
2876
- GCTraceTime (Info, gc) time (msg, NULL , GCCause::_no_gc, true );
2876
+ GCTraceTime (Info, gc) time (msg);
2877
2877
EventMark em (" %s" , msg);
2878
2878
2879
2879
ShenandoahWorkerScope scope (workers (),
@@ -2887,7 +2887,7 @@ void ShenandoahHeap::entry_reset() {
2887
2887
void ShenandoahHeap::entry_preclean () {
2888
2888
if (ShenandoahPreclean && process_references ()) {
2889
2889
static const char * msg = " Concurrent precleaning" ;
2890
- GCTraceTime (Info, gc) time (msg, NULL , GCCause::_no_gc, true );
2890
+ GCTraceTime (Info, gc) time (msg);
2891
2891
EventMark em (" %s" , msg);
2892
2892
2893
2893
ShenandoahGCPhase conc_preclean (ShenandoahPhaseTimings::conc_preclean);
@@ -2904,7 +2904,7 @@ void ShenandoahHeap::entry_preclean() {
2904
2904
2905
2905
void ShenandoahHeap::entry_traversal () {
2906
2906
static const char * msg = conc_traversal_event_message ();
2907
- GCTraceTime (Info, gc) time (msg, NULL , GCCause::_no_gc, true );
2907
+ GCTraceTime (Info, gc) time (msg);
2908
2908
EventMark em (" %s" , msg);
2909
2909
2910
2910
TraceCollectorStats tcs (monitoring_support ()->concurrent_collection_counters ());
0 commit comments