1 #ifndef __ASM_SH_KDEBUG_H
2 #define __ASM_SH_KDEBUG_H
4 #include <linux/notifier.h>
13 int register_die_notifier(struct notifier_block *nb);
14 int unregister_die_notifier(struct notifier_block *nb);
15 int register_page_fault_notifier(struct notifier_block *nb);
16 int unregister_page_fault_notifier(struct notifier_block *nb);
17 extern struct atomic_notifier_head shdie_chain;
19 /* Grossly misnamed. */
25 static inline int notify_die(enum die_val val, struct pt_regs *regs,
28 struct die_args args = {
33 return atomic_notifier_call_chain(&shdie_chain, val, &args);
35 #endif /* __ASM_SH_KDEBUG_H */