< prev index next >

src/share/vm/gc/g1/g1HeapVerifier.cpp

Print this page
rev 13288 : imported patch 8181917-refactor-ul-logstream
rev 13289 : [mq]: 8181917-refactor-ul-logstream-delta

@@ -65,11 +65,10 @@
         log.info("Root location " PTR_FORMAT " points to dead obj " PTR_FORMAT, p2i(p), p2i(obj));
         if (_vo == VerifyOption_G1UseMarkWord) {
           log.error("  Mark word: " PTR_FORMAT, p2i(obj->mark()));
         }
         ResourceMark rm;
-        // Unconditional write?
         LogStream ls(log.error());
         obj->print_on(&ls);
         _failures = true;
       }
     }

@@ -409,11 +408,10 @@
     // It helps to have the per-region information in the output to
     // help us track down what went wrong. This is why we call
     // print_extended_on() instead of print_on().
     Log(gc, verify) log;
     ResourceMark rm;
-    // Unconditional write?
     LogStream ls(log.error());
     _g1h->print_extended_on(&ls);
   }
   guarantee(!failures, "there should not have been any failures");
 }
< prev index next >