ftp://ftp.kernel.org/pub/linux/kernel/v2.6/linux-2.6.6.tar.bz2
[linux-2.6.git] / include / asm-ia64 / bug.h
1 #ifndef _ASM_IA64_BUG_H
2 #define _ASM_IA64_BUG_H
3
4 #if (__GNUC__ > 3) || (__GNUC__ == 3 && __GNUC_MINOR__ >= 1)
5 # define ia64_abort()   __builtin_trap()
6 #else
7 # define ia64_abort()   (*(volatile int *) 0 = 0)
8 #endif
9 #define BUG() do { printk("kernel BUG at %s:%d!\n", __FILE__, __LINE__); ia64_abort(); } while (0)
10
11 #define BUG_ON(condition) do { if (unlikely((condition)!=0)) BUG(); } while(0)
12
13 #define PAGE_BUG(page) do { BUG(); } while (0)
14
15 #define WARN_ON(condition) do { \
16         if (unlikely((condition)!=0)) { \
17                 printk("Badness in %s at %s:%d\n", __FUNCTION__, __FILE__, __LINE__); \
18                 dump_stack(); \
19         } \
20 } while (0)
21
22 #endif