changeset 10595:e67abc2d032f

8231201: hs_err should print coalesced safepoint operations in Events section Reviewed-by: phh, dholmes
author shade
date Thu, 19 Sep 2019 09:50:11 +0200
parents 8c3a44b7ecfc
children cd47e690607d
files src/share/vm/runtime/vmThread.cpp
diffstat 1 files changed, 1 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- a/src/share/vm/runtime/vmThread.cpp	Thu Jan 16 10:47:16 2020 +0800
+++ b/src/share/vm/runtime/vmThread.cpp	Thu Sep 19 09:50:11 2019 +0200
@@ -507,6 +507,7 @@
           _cur_vm_operation = safepoint_ops;
           if (_cur_vm_operation != NULL) {
             do {
+              EventMark em("Executing coalesced safepoint VM operation: %s", _cur_vm_operation->name());
               // evaluate_operation deletes the op object so we have
               // to grab the next op now
               VM_Operation* next = _cur_vm_operation->next();