https://github.com/torvalds/linux
Raw File
Tip revision: 7705a8792b0fc82fd7d4dd923724606bbfd9fb20 authored by Linus Torvalds on 20 March 2006, 05:53:29 UTC
Linux 2.6.16
Tip revision: 7705a87
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