hotspot/src/share/vm/memory/universe.cpp
changeset 36178 9739f8c767da
parent 35509 15f2d488eeee
child 37073 c39d0903390b
child 36508 5f9eee6b383b
--- a/hotspot/src/share/vm/memory/universe.cpp	Tue Feb 16 13:20:38 2016 -0800
+++ b/hotspot/src/share/vm/memory/universe.cpp	Wed Feb 17 14:03:18 2016 -0500
@@ -64,6 +64,7 @@
 #include "runtime/init.hpp"
 #include "runtime/java.hpp"
 #include "runtime/javaCalls.hpp"
+#include "runtime/logTimer.hpp"
 #include "runtime/sharedRuntime.hpp"
 #include "runtime/synchronizer.hpp"
 #include "runtime/thread.inline.hpp"
@@ -626,7 +627,9 @@
   guarantee(sizeof(oop) >= sizeof(HeapWord), "HeapWord larger than oop?");
   guarantee(sizeof(oop) % sizeof(HeapWord) == 0,
             "oop size is not not a multiple of HeapWord size");
-  TraceTime timer("Genesis", TraceStartupTime);
+
+  TraceStartupTime timer("Genesis");
+
   JavaClasses::compute_hard_coded_offsets();
 
   jint status = Universe::initialize_heap();