0.01 の panic() って

printk してループさせてるんだ (絶句
kernel/panic.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(;;);
}

なんとゆーか、わははは的。

とは言え

最新の実装がどうなっているかは知りません。