2005-04-16 22:20:36 +00:00
|
|
|
#ifndef __ASM_SH64_BUG_H
|
|
|
|
#define __ASM_SH64_BUG_H
|
|
|
|
|
2006-09-12 05:38:23 +00:00
|
|
|
#ifdef CONFIG_BUG
|
2005-04-16 22:20:36 +00:00
|
|
|
/*
|
|
|
|
* Tell the user there is some problem, then force a segfault (in process
|
|
|
|
* context) or a panic (interrupt context).
|
|
|
|
*/
|
|
|
|
#define BUG() do { \
|
|
|
|
printk("kernel BUG at %s:%d!\n", __FILE__, __LINE__); \
|
|
|
|
*(volatile int *)0 = 0; \
|
|
|
|
} while (0)
|
|
|
|
|
2006-09-12 05:38:23 +00:00
|
|
|
#define HAVE_ARCH_BUG
|
|
|
|
#endif
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2006-09-12 05:38:23 +00:00
|
|
|
#include <asm-generic/bug.h>
|
2005-04-16 22:20:36 +00:00
|
|
|
|
|
|
|
#endif /* __ASM_SH64_BUG_H */
|