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