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