bond/include/kernel/ke/bug_check.h

14 lines
220 B
C
Raw Normal View History

2018-03-24 00:58:24 +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
2018-03-24 00:58:24 +00:00
void SXAPI ke_panic(uint64 reason);
2018-02-18 07:48:59 +00:00
void SXAPI ke_trap(void);
2018-03-24 00:58:24 +00:00
#endif