< prev index next >

src/hotspot/share/jfr/jfr.cpp

Print this page

        

*** 1,7 **** /* ! * Copyright (c) 2019, Oracle and/or its affiliates. All rights reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License version 2 only, as * published by the Free Software Foundation. --- 1,7 ---- /* ! * Copyright (c) 2019, 2020, Oracle and/or its affiliates. All rights reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License version 2 only, as * published by the Free Software Foundation.
*** 28,37 **** --- 28,38 ---- #include "jfr/periodic/sampling/jfrThreadSampler.hpp" #include "jfr/recorder/jfrRecorder.hpp" #include "jfr/recorder/checkpoint/jfrCheckpointManager.hpp" #include "jfr/recorder/repository/jfrEmergencyDump.hpp" #include "jfr/recorder/service/jfrOptionSet.hpp" + #include "jfr/recorder/repository/jfrRepository.hpp" #include "jfr/support/jfrThreadLocal.hpp" #include "runtime/java.hpp" bool Jfr::is_enabled() { return JfrRecorder::is_enabled();
*** 99,108 **** --- 100,115 ---- if (JfrRecorder::is_recording()) { JfrEmergencyDump::on_vm_shutdown(exception_handler); } } + void Jfr::on_vm_error_report(outputStream* st) { + if (JfrRecorder::is_recording()) { + JfrRepository::on_vm_error_report(st); + } + } + void Jfr::weak_oops_do(BoolObjectClosure* is_alive, OopClosure* f) { if (LeakProfiler::is_running()) { LeakProfiler::weak_oops_do(is_alive, f); } }
< prev index next >