comparison src/share/vm/utilities/ostream.hpp @ 342:37f87013dfd8

6711316: Open source the Garbage-First garbage collector Summary: First mercurial integration of the code for the Garbage-First garbage collector. Reviewed-by: apetrusenko, iveresov, jmasa, sgoldman, tonyp, ysr
author ysr
date Thu, 05 Jun 2008 15:57:56 -0700
parents c7c777385a15
children fab5f738c515
comparison
equal deleted inserted replaced
189:0b27f3512f9e 342:37f87013dfd8
84 void bol() { if (_position > 0) cr(); } 84 void bol() { if (_position > 0) cr(); }
85 85
86 // Time stamp 86 // Time stamp
87 TimeStamp& time_stamp() { return _stamp; } 87 TimeStamp& time_stamp() { return _stamp; }
88 void stamp(); 88 void stamp();
89 void stamp(bool guard, const char* prefix, const char* suffix);
90 void stamp(bool guard) {
91 stamp(guard, "", ": ");
92 }
89 // Date stamp 93 // Date stamp
90 void date_stamp(bool guard, const char* prefix, const char* suffix); 94 void date_stamp(bool guard, const char* prefix, const char* suffix);
91 // A simplified call that includes a suffix of ": " 95 // A simplified call that includes a suffix of ": "
92 void date_stamp(bool guard) { 96 void date_stamp(bool guard) {
93 date_stamp(guard, "", ": "); 97 date_stamp(guard, "", ": ");