2018-01-26 08:43:22 +00:00
|
|
|
#ifndef _KERNEL_KE_BUG_CHECK_H_
|
|
|
|
#define _KERNEL_KE_BUG_CHECK_H_
|
2016-06-25 21:40:47 +00:00
|
|
|
|
2018-01-26 08:43:22 +00:00
|
|
|
#include "type.h"
|
2016-06-25 07:25:54 +00:00
|
|
|
|
2018-01-26 08:43:22 +00:00
|
|
|
#define BUG_CHECK_IRQL_MISMATCH 0
|
|
|
|
#define BUG_CHECK_PMM_UNALIGNED 1
|
2016-06-25 07:25:54 +00:00
|
|
|
|
2017-02-01 03:26:08 +00:00
|
|
|
void KABI ke_bug_check(uint64_t reason);
|
2016-06-25 21:40:47 +00:00
|
|
|
|
|
|
|
#endif
|