Files
linux-apfs/include/asm-i386/bug.h
T

26 lines
516 B
C
Raw Normal View History

2005-04-16 15:20:36 -07:00
#ifndef _I386_BUG_H
#define _I386_BUG_H
/*
* Tell the user there is some problem.
* The offending file and line are encoded after the "officially
* undefined" opcode for parsing in the trap handler.
*/
2005-05-01 08:59:01 -07:00
#ifdef CONFIG_BUG
#define HAVE_ARCH_BUG
2005-04-16 15:20:36 -07:00
#ifdef CONFIG_DEBUG_BUGVERBOSE
#define BUG() \
__asm__ __volatile__( "ud2\n" \
"\t.word %c0\n" \
"\t.long %c1\n" \
: : "i" (__LINE__), "i" (__FILE__))
#else
#define BUG() __asm__ __volatile__("ud2\n")
#endif
2005-05-01 08:59:01 -07:00
#endif
2005-04-16 15:20:36 -07:00
#include <asm-generic/bug.h>
#endif