OpenJDK / portola / portola
changeset 52622:a2e22b1ee4a1
8214004: Missing space between compiler thread name and task info in hs_err
Reviewed-by: dcubed, zgu
author | shade |
---|---|
date | Sat, 17 Nov 2018 13:48:50 +0100 |
parents | 0379b618ec46 |
children | 66ddc32d2dc5 |
files | src/hotspot/share/runtime/thread.cpp |
diffstat | 1 files changed, 1 insertions(+), 0 deletions(-) [+] |
line wrap: on
line diff
--- a/src/hotspot/share/runtime/thread.cpp Sat Nov 17 18:11:23 2018 +0800 +++ b/src/hotspot/share/runtime/thread.cpp Sat Nov 17 13:48:50 2018 +0100 @@ -4703,6 +4703,7 @@ CompileTask* task = ct->task(); if (task != NULL) { thread->print_name_on_error(st, buf, buflen); + st->print(" "); task->print(st, NULL, true, true); } }