diff --git a/src/hotspot/share/gc/shenandoah/shenandoahEvacInfo.hpp b/src/hotspot/share/gc/shenandoah/shenandoahEvacInfo.hpp index 23e3f5de88c..ff106a70d65 100644 --- a/src/hotspot/share/gc/shenandoah/shenandoahEvacInfo.hpp +++ b/src/hotspot/share/gc/shenandoah/shenandoahEvacInfo.hpp @@ -28,6 +28,7 @@ #include "memory/allocation.hpp" class ShenandoahEvacInfo : public StackObj { + // Values for ShenandoahEvacInfo jfr event, sizes stored as bytes size_t _collection_set_regions; size_t _collection_set_used_before; size_t _collection_set_used_after; diff --git a/src/hotspot/share/gc/shenandoah/shenandoahTrace.cpp b/src/hotspot/share/gc/shenandoah/shenandoahTrace.cpp index 679dd48140b..828475d37f9 100644 --- a/src/hotspot/share/gc/shenandoah/shenandoahTrace.cpp +++ b/src/hotspot/share/gc/shenandoah/shenandoahTrace.cpp @@ -51,4 +51,4 @@ void ShenandoahTracer::send_evacuation_info_event(ShenandoahEvacInfo* info) { e.commit(); } -} \ No newline at end of file +} diff --git a/src/hotspot/share/gc/shenandoah/shenandoahTrace.hpp b/src/hotspot/share/gc/shenandoah/shenandoahTrace.hpp index 92f19ba970d..f584ef207bb 100644 --- a/src/hotspot/share/gc/shenandoah/shenandoahTrace.hpp +++ b/src/hotspot/share/gc/shenandoah/shenandoahTrace.hpp @@ -39,4 +39,4 @@ class ShenandoahTracer : public GCTracer, public CHeapObj { void send_evacuation_info_event(ShenandoahEvacInfo* info); }; -#endif \ No newline at end of file +#endif