8231201: hs_err should print coalesced safepoint operations in Events section

Thu, 19 Sep 2019 09:50:11 +0200

author
shade
date
Thu, 19 Sep 2019 09:50:11 +0200
changeset 9818
e67abc2d032f
parent 9817
8c3a44b7ecfc
child 9819
cd47e690607d

8231201: hs_err should print coalesced safepoint operations in Events section
Reviewed-by: phh, dholmes

src/share/vm/runtime/vmThread.cpp file | annotate | diff | comparison | revisions
     1.1 --- a/src/share/vm/runtime/vmThread.cpp	Thu Jan 16 10:47:16 2020 +0800
     1.2 +++ b/src/share/vm/runtime/vmThread.cpp	Thu Sep 19 09:50:11 2019 +0200
     1.3 @@ -507,6 +507,7 @@
     1.4            _cur_vm_operation = safepoint_ops;
     1.5            if (_cur_vm_operation != NULL) {
     1.6              do {
     1.7 +              EventMark em("Executing coalesced safepoint VM operation: %s", _cur_vm_operation->name());
     1.8                // evaluate_operation deletes the op object so we have
     1.9                // to grab the next op now
    1.10                VM_Operation* next = _cur_vm_operation->next();

mercurial