8150619: Improve thread based logging introduced with 8149036

Reviewed-by: coleenp, dholmes
This commit is contained in:
Thomas Stuefe 2016-02-29 08:50:57 +01:00
parent 9e60be45df
commit 31f86a2308
7 changed files with 92 additions and 25 deletions

View file

@ -694,7 +694,7 @@ static void *java_start(Thread *thread) {
// call one more level start routine
thread->run();
log_info(os, thread)("Thread finished (tid " UINTX_FORMAT ", pthread id " UINTX_FORMAT ").",
log_info(os, thread)("Thread finished (tid: " UINTX_FORMAT ", pthread id: " UINTX_FORMAT ").",
os::current_thread_id(), (uintx) pthread_self());
return 0;