8214004: Missing space between compiler thread name and task info in hs_err
authorshade
Sat, 17 Nov 2018 13:48:50 +0100
changeset 52599 a2e22b1ee4a1
parent 52598 0379b618ec46
child 52600 66ddc32d2dc5
8214004: Missing space between compiler thread name and task info in hs_err Reviewed-by: dcubed, zgu
src/hotspot/share/runtime/thread.cpp
--- 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);
       }
     }