Staging
v0.5.1
https://github.com/torvalds/linux
Raw File
Tip revision: 6246b6128bbe34d0752f119cf7c5111c85fe481d authored by Linus Torvalds on 03 April 2006, 03:22:10 UTC
Linux v2.6.17-rc1
Tip revision: 6246b61
bug.h
#ifndef _PARISC_BUG_H
#define _PARISC_BUG_H

#ifdef CONFIG_BUG
#define HAVE_ARCH_BUG
#define BUG() do { \
	printk("kernel BUG at %s:%d!\n", __FILE__, __LINE__); \
	dump_stack(); \
	panic("BUG!"); \
} while (0)
#endif

#include <asm-generic/bug.h>
#endif
back to top