bug.h 268 B

1234567891011121314
  1. #ifndef _S390_BUG_H
  2. #define _S390_BUG_H
  3. #include <linux/kernel.h>
  4. #define BUG() do { \
  5. printk("kernel BUG at %s:%d!\n", __FILE__, __LINE__); \
  6. __asm__ __volatile__(".long 0"); \
  7. } while (0)
  8. #define HAVE_ARCH_BUG
  9. #include <asm-generic/bug.h>
  10. #endif