⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 panic.c

📁 linux内核源码
💻 C
字号:
/* *  linux/kernel/panic.c * *  (C) 1991  Linus Torvalds *//* * This function is used through-out the kernel (includeinh mm and fs) * to indicate a major problem. */#include <linux/kernel.h>#include <linux/sched.h>void sys_sync(void);	/* it's really int */volatile void panic(const char * s){	printk("Kernel panic: %s\n\r",s);	if (current == task[0])		printk("In swapper task - not syncing\n\r");	else		sys_sync();	for(;;);}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -