comparison src/share/vm/utilities/ostream.cpp @ 6843:c3e799c37717

7177003: C1: LogCompilation support Summary: add LogCompilation support in C1 - both client and tiered mode. Reviewed-by: twisti, kvn
author vlivanov
date Fri, 05 Oct 2012 18:57:10 -0700
parents 4ee06e614636
children e522a00b91aa 203f64878aab
comparison
equal deleted inserted replaced
6830:81e878c53615 6843:c3e799c37717
757 // got the lock 757 // got the lock
758 if (writer_id != _last_writer) { 758 if (writer_id != _last_writer) {
759 if (has_log) { 759 if (has_log) {
760 _log_file->bol(); 760 _log_file->bol();
761 // output a hint where this output is coming from: 761 // output a hint where this output is coming from:
762 _log_file->print_cr("<writer thread='"INTX_FORMAT"'/>", writer_id); 762 _log_file->print_cr("<writer thread='" UINTX_FORMAT "'/>", writer_id);
763 } 763 }
764 _last_writer = writer_id; 764 _last_writer = writer_id;
765 } 765 }
766 _writer = writer_id; 766 _writer = writer_id;
767 return writer_id; 767 return writer_id;