bond/include/kernel/ke/bug_check.h

11 lines
201 B
C
Raw Normal View History

2018-01-26 08:43:22 +00:00
#ifndef _KERNEL_KE_BUG_CHECK_H_
#define _KERNEL_KE_BUG_CHECK_H_
2018-01-26 08:43:22 +00:00
#include "type.h"
2018-01-26 08:43:22 +00:00
#define BUG_CHECK_IRQL_MISMATCH 0
#define BUG_CHECK_PMM_UNALIGNED 1
2017-02-01 03:26:08 +00:00
void KABI ke_bug_check(uint64_t reason);
#endif