comparison src/share/vm/utilities/events.cpp @ 18009:f73af4455d7d

Merge
author asaha
date Thu, 29 May 2014 09:56:06 -0700
parents 0297e36d24a1 78bbf4d43a14
children
comparison
equal deleted inserted replaced
18008:da65bbf6f89e 18009:f73af4455d7d
80 if (LogEvents) { 80 if (LogEvents) {
81 va_list ap; 81 va_list ap;
82 va_start(ap, format); 82 va_start(ap, format);
83 // Save a copy of begin message and log it. 83 // Save a copy of begin message and log it.
84 _buffer.printv(format, ap); 84 _buffer.printv(format, ap);
85 Events::log(NULL, "%s", (const char*)_buffer); 85 Events::log(NULL, "%s", _buffer.buffer());
86 va_end(ap); 86 va_end(ap);
87 } 87 }
88 } 88 }
89 89
90 EventMark::~EventMark() { 90 EventMark::~EventMark() {
91 if (LogEvents) { 91 if (LogEvents) {
92 // Append " done" to the begin message and log it 92 // Append " done" to the begin message and log it
93 _buffer.append(" done"); 93 _buffer.append(" done");
94 Events::log(NULL, "%s", (const char*)_buffer); 94 Events::log(NULL, "%s", _buffer.buffer());
95 } 95 }
96 } 96 }