# HG changeset patch # User shade # Date 1568879411 -7200 # Node ID e67abc2d032f4e9ce6c1b83f46014ca7f5b5d4ee # Parent 8c3a44b7ecfcdb6ef81e5ae2edd68f20d4802771 8231201: hs_err should print coalesced safepoint operations in Events section Reviewed-by: phh, dholmes diff -r 8c3a44b7ecfc -r e67abc2d032f src/share/vm/runtime/vmThread.cpp --- 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();