लिनक्स/linux-0.01.tar/kernel/panic.c

विकिविश्वविद्यालय से
/*
 * This function is used through-out the kernel (includeinh mm and fs)
 * to indicate a major problem.
 */
#include <linux/kernel.h>

volatile void panic(const char * s)
{
	printk("Kernel panic: %s\n\r",s);
	for(;;);
} 

यह भी देखें[सम्पादन | स्रोत सम्पादित करें]