bond/include/kernel/ke/bug_check.h

13 lines
225 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
2018-02-18 07:48:59 +00:00
void SXAPI ke_panic(uint64_t reason);
2018-02-18 07:48:59 +00:00
void SXAPI ke_trap(void);
#endif