comparison src/share/vm/utilities/ostream.hpp @ 360:5d254928c888

Merge
author ysr
date Wed, 27 Aug 2008 11:20:46 -0700
parents 1ee8caae33af
children c18cbe5936b8
comparison
equal deleted inserted replaced
341:d60e4e6d7f72 360:5d254928c888
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, "", ": ");