From: Kenn H. <ke...@us...> - 2003-08-03 12:45:10
|
Update of /cvsroot/linux-vax/kernel-2.5/include/asm-vax In directory sc8-pr-cvs1:/tmp/cvs-serv7868/include/asm Added Files: bug.h Log Message: 2.5.58 moves BUG and PAGE_BUG from asm/page.h to asm/bug.h --- NEW FILE --- #ifndef _ASMVAX_BUG_H #define _ASMVAX_BUG_H #define BUG() do { \ printk("kernel BUG at %s:%d!\n", __FILE__, __LINE__); \ __asm__ __volatile__("bugw $0"); \ } while (0) #define PAGE_BUG(page) do { \ BUG(); \ } while (0) #endif /* _ASMVAX_BUG_H */ |