Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | #ifndef _ASMARM_BUG_H |
| 2 | #define _ASMARM_BUG_H |
| 3 | |
| 4 | #include <linux/config.h> |
| 5 | |
Matt Mackall | c8538a7 | 2005-05-01 08:59:01 -0700 | [diff] [blame] | 6 | #ifdef CONFIG_BUG |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7 | #ifdef CONFIG_DEBUG_BUGVERBOSE |
Al Viro | 3321565 | 2005-08-23 22:47:52 +0100 | [diff] [blame] | 8 | extern void __bug(const char *file, int line, void *data) __attribute__((noreturn)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 9 | |
| 10 | /* give file/line information */ |
| 11 | #define BUG() __bug(__FILE__, __LINE__, NULL) |
| 12 | |
| 13 | #else |
| 14 | |
| 15 | /* this just causes an oops */ |
| 16 | #define BUG() (*(int *)0 = 0) |
| 17 | |
| 18 | #endif |
| 19 | |
| 20 | #define HAVE_ARCH_BUG |
Matt Mackall | c8538a7 | 2005-05-01 08:59:01 -0700 | [diff] [blame] | 21 | #endif |
| 22 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 23 | #include <asm-generic/bug.h> |
| 24 | |
| 25 | #endif |