Arquivos
2013-09-18 10:18:30 +03:00

12 linhas
213 B
C

/*
* This function is used through-out the kernel (includeinh mm and fs)
* to indicate a major problem.
*/
#include <linux/kernel.h>
void panic(const char * s)
{
printk("Kernel panic: %s\n\r",s);
for(;;);
}