blob: ed815090b3bc2bc686612697dadbbdd2c4f85d0a [file] [log] [blame]
Christoph Hellwig1eeb66a2007-05-08 00:27:03 -07001#ifndef _LINUX_KDEBUG_H
2#define _LINUX_KDEBUG_H
3
4#include <asm/kdebug.h>
5
Andrew Mortonfe9844d2007-07-31 00:38:45 -07006struct notifier_block;
7
Christoph Hellwig1eeb66a2007-05-08 00:27:03 -07008struct die_args {
9 struct pt_regs *regs;
10 const char *str;
11 long err;
12 int trapnr;
13 int signr;
14};
15
16int register_die_notifier(struct notifier_block *nb);
17int unregister_die_notifier(struct notifier_block *nb);
18
19int notify_die(enum die_val val, const char *str,
20 struct pt_regs *regs, long err, int trap, int sig);
21
22#endif /* _LINUX_KDEBUG_H */