[PATCH] convert signal handling of NODEFER to act like other Unix boxes.
[linux-2.6/kvm.git] / include / asm-s390 / bug.h
bloba2e7430aafa625b53cc889a998b4ad972f876763
1 #ifndef _S390_BUG_H
2 #define _S390_BUG_H
4 #include <linux/kernel.h>
6 #ifdef CONFIG_BUG
7 #define BUG() do { \
8 printk("kernel BUG at %s:%d!\n", __FILE__, __LINE__); \
9 __asm__ __volatile__(".long 0"); \
10 } while (0)
12 #define HAVE_ARCH_BUG
13 #endif
15 #include <asm-generic/bug.h>
17 #endif