This repository has been archived on 2023-08-20. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
RescueBootCD/extra/linux-2.6.10/include/asm-m32r/bug.h

23 lines
472 B
C

#ifndef _M32R_BUG_H
#define _M32R_BUG_H
#define BUG() do { \
printk("kernel BUG at %s:%d!\n", __FILE__, __LINE__); \
} while (0)
#define PAGE_BUG(page) do { BUG(); } while (0)
#define BUG_ON(condition) \
do { if (unlikely((condition)!=0)) BUG(); } while(0)
#define WARN_ON(condition) do { \
if (unlikely((condition)!=0)) { \
printk("Badness in %s at %s:%d\n", __FUNCTION__, \
__FILE__, __LINE__); \
dump_stack(); \
} \
} while (0)
#endif /* _M32R_BUG_H */