From f33b8cbb7ab8325a080ce35861bb32e7f0e60476 Mon Sep 17 00:00:00 2001 From: Vladimir Kozlov Date: Thu, 31 Mar 2011 16:54:27 -0700 Subject: [PATCH] 7032849: 7022998 changes broke hs_err compile task print Initialize the time stamp on ostream used for hs_err dumping. Reviewed-by: never --- hotspot/src/share/vm/utilities/ostream.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/hotspot/src/share/vm/utilities/ostream.cpp b/hotspot/src/share/vm/utilities/ostream.cpp index 02fda35daaf..2bdade8b109 100644 --- a/hotspot/src/share/vm/utilities/ostream.cpp +++ b/hotspot/src/share/vm/utilities/ostream.cpp @@ -810,6 +810,8 @@ staticBufferStream::staticBufferStream(char* buffer, size_t buflen, _buffer = buffer; _buflen = buflen; _outer_stream = outer_stream; + // compile task prints time stamp relative to VM start + _stamp.update_to(1); } void staticBufferStream::write(const char* c, size_t len) {