< prev index next >

src/hotspot/share/jfr/recorder/repository/jfrEmergencyDump.hpp

Print this page




  15  * You should have received a copy of the GNU General Public License version
  16  * 2 along with this work; if not, write to the Free Software Foundation,
  17  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  18  *
  19  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  20  * or visit www.oracle.com if you need additional information or have any
  21  * questions.
  22  *
  23  */
  24 
  25 #ifndef SHARE_JFR_RECORDER_REPOSITORY_JFREMERGENCYDUMP_HPP
  26 #define SHARE_JFR_RECORDER_REPOSITORY_JFREMERGENCYDUMP_HPP
  27 
  28 #include "memory/allocation.hpp"
  29 
  30 //
  31 // Responsible for creating an hs_err<pid>.jfr file in exceptional shutdown situations (crash, OOM)
  32 //
  33 class JfrEmergencyDump : AllStatic {
  34  public:

  35   static void on_vm_shutdown(bool exception_handler);
  36   static void on_vm_error(const char* repository_path);
  37   static const char* build_dump_path(const char* repository_path);
  38 };
  39 
  40 #endif // SHARE_JFR_RECORDER_REPOSITORY_JFREMERGENCYDUMP_HPP


  15  * You should have received a copy of the GNU General Public License version
  16  * 2 along with this work; if not, write to the Free Software Foundation,
  17  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  18  *
  19  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  20  * or visit www.oracle.com if you need additional information or have any
  21  * questions.
  22  *
  23  */
  24 
  25 #ifndef SHARE_JFR_RECORDER_REPOSITORY_JFREMERGENCYDUMP_HPP
  26 #define SHARE_JFR_RECORDER_REPOSITORY_JFREMERGENCYDUMP_HPP
  27 
  28 #include "memory/allocation.hpp"
  29 
  30 //
  31 // Responsible for creating an hs_err<pid>.jfr file in exceptional shutdown situations (crash, OOM)
  32 //
  33 class JfrEmergencyDump : AllStatic {
  34  public:
  35   static void setup_emergency_dump_file_descriptor();
  36   static void on_vm_shutdown(bool exception_handler);
  37   static void on_vm_error(const char* repository_path);
  38   static const char* build_dump_path(const char* repository_path);
  39 };
  40 
  41 #endif // SHARE_JFR_RECORDER_REPOSITORY_JFREMERGENCYDUMP_HPP
< prev index next >