Don't understand german? Read or subscribe to my english-only feed.

Fun in the Linux kernel source

void die_if_kernel(char *str, struct pt_regs *regs)
{
        static int die_counter;
        int count = 0;

        /* Amuse the user. */
        printk(
"              \\|/ ____ \\|/\n"
"              \"@'/ .. \\`@\"\n"
"              /_| \\__/ |_\\\n"
"                 \\__U_/\n");

  — arch/sparc/kernel/traps_64.c

Comments are closed.