comparison src/share/vm/runtime/timer.cpp @ 14696:9c9f4dac029b

8023899: Typo in TraceCPUTime message Summary: Removed the comma Reviewed-by: pliden, tschatzl
author jwilhelm
date Fri, 31 Jan 2014 13:38:01 +0100
parents bdd155477289
children b51e29501f30
comparison
equal deleted inserted replaced
14514:2328dac1da27 14696:9c9f4dac029b
192 192
193 user_secs = user_time - _starting_user_time; 193 user_secs = user_time - _starting_user_time;
194 system_secs = system_time - _starting_system_time; 194 system_secs = system_time - _starting_system_time;
195 real_secs = real_time - _starting_real_time; 195 real_secs = real_time - _starting_real_time;
196 196
197 _logfile->print(" [Times: user=%3.2f sys=%3.2f, real=%3.2f secs] ", 197 _logfile->print(" [Times: user=%3.2f sys=%3.2f real=%3.2f secs] ",
198 user_secs, system_secs, real_secs); 198 user_secs, system_secs, real_secs);
199 199
200 } else { 200 } else {
201 _logfile->print("[Invalid result in TraceCPUTime]"); 201 _logfile->print("[Invalid result in TraceCPUTime]");
202 } 202 }