From 088967b9a9c4d651a937a5c532f107edf736bce7 Mon Sep 17 00:00:00 2001 From: shade Date: Thu, 19 Sep 2019 09:50:11 +0200 Subject: [PATCH] 8231201: hs_err should print coalesced safepoint operations in Events section Reviewed-by: phh, dholmes --- src/share/vm/runtime/vmThread.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/share/vm/runtime/vmThread.cpp b/src/share/vm/runtime/vmThread.cpp index d08c5db81..27bebdc8d 100644 --- a/src/share/vm/runtime/vmThread.cpp +++ b/src/share/vm/runtime/vmThread.cpp @@ -507,6 +507,7 @@ void VMThread::loop() { _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(); -- GitLab