blob: a66c6f97c391793d40f461a75394c2cfb3ddbea4 (
plain)
1
2
3
4
5
6
7
8
|
/* $Id$ */
#ifndef __ASM_BUG_H
#define __ASM_BUG_H
#define BUG() do { printk("kernel BUG at %s:%d!\n", __FILE__, __LINE__); *(int *)0=0; } while (0)
#define PAGE_BUG(page) do { BUG(); } while (0)
#endif
|