< prev index next >

src/share/vm/runtime/timer.cpp

Print this page

        

@@ -118,11 +118,10 @@
   _active   = doit;
   _verbose  = true;
 
   if (_active) {
     _accum = NULL;
-    tty->stamp(PrintGCTimeStamps);
     tty->print("[%s", title);
     tty->flush();
     _t.start();
   }
 }

@@ -133,11 +132,10 @@
                      bool verbose) {
   _active = doit;
   _verbose = verbose;
   if (_active) {
     if (_verbose) {
-      tty->stamp(PrintGCTimeStamps);
       tty->print("[%s", title);
       tty->flush();
     }
     _accum = accumulator;
     _t.start();
< prev index next >