Files

20 lines
433 B
C
Raw Permalink Normal View History

/* SPDX-License-Identifier: GPL-2.0 */
2007-05-01 16:33:10 +09:00
#ifndef __ASM_SH_KDEBUG_H
#define __ASM_SH_KDEBUG_H
/* Grossly misnamed. */
enum die_val {
DIE_TRAP,
2009-09-01 17:38:32 +09:00
DIE_NMI,
DIE_OOPS,
DIE_BREAKPOINT,
DIE_SSTEP,
2007-05-01 16:33:10 +09:00
};
2012-05-24 15:03:46 +09:00
/* arch/sh/kernel/dumpstack.c */
2020-06-17 16:36:32 +02:00
extern void printk_address(unsigned long address, int reliable);
2020-06-08 21:31:24 -07:00
extern void dump_mem(const char *str, const char *loglvl,
unsigned long bottom, unsigned long top);
2007-05-01 16:33:10 +09:00
#endif /* __ASM_SH_KDEBUG_H */