linux-headers/arch/e2k/include/asm/kdebug.h

17 lines
278 B
C
Raw Normal View History

2021-07-14 00:44:10 +02:00
#ifndef _ASM_E2K_KDEBUG_H
#define _ASM_E2K_KDEBUG_H
#include <linux/notifier.h>
struct pt_regs;
/* Grossly misnamed. */
enum die_val {
DIE_OOPS = 1,
DIE_BREAKPOINT
};
2021-11-14 16:13:25 +01:00
extern void die(const char *str, struct pt_regs *regs, long err) __cold;
2021-07-14 00:44:10 +02:00
#endif /* _ASM_E2K_KDEBUG_H */