xref: /haiku/headers/private/kernel/core_dump.h (revision 2db0fbd87ec3eeed8ab9b08ecfd1c41891c7e3a6)
1 /*
2  * Copyright 2016, Ingo Weinhold, ingo_weinhold@gmx.de.
3  * Distributed under the terms of the MIT License.
4  *
5  * Core dump support.
6  */
7 #ifndef _KERNEL_CORE_DUMP_H
8 #define _KERNEL_CORE_DUMP_H
9 
10 
11 #include <SupportDefs.h>
12 
13 
14 status_t	core_dump_write_core_file(const char* path, bool killTeam);
15 void		core_dump_trap_thread();
16 
17 
18 #endif	// _KERNEL_CORE_DUMP_H
19