bug.h 376 字节
Newer Older
L
Linus Torvalds 已提交
1 2 3
#ifndef _SPARC_BUG_H
#define _SPARC_BUG_H

M
Matt Mackall 已提交
4
#ifdef CONFIG_BUG
5
#include <linux/compiler.h>
L
Linus Torvalds 已提交
6 7 8 9 10

#ifdef CONFIG_DEBUG_BUGVERBOSE
extern void do_BUG(const char *file, int line);
#define BUG() do {					\
	do_BUG(__FILE__, __LINE__);			\
11
	__builtin_trap();				\
L
Linus Torvalds 已提交
12 13
} while (0)
#else
14
#define BUG()		__builtin_trap()
L
Linus Torvalds 已提交
15 16 17
#endif

#define HAVE_ARCH_BUG
M
Matt Mackall 已提交
18 19
#endif

L
Linus Torvalds 已提交
20 21 22
#include <asm-generic/bug.h>

#endif