📄 shutdown.c
字号:
#include <sys/param.h>#include <sys/systm.h>/* * Three routines to handle adding/deleting items on the * shutdown callout lists * * at_shutdown(): * Take the arguments given and put them onto the shutdown callout list. * However first make sure that it's not already there. * returns 0 on success. */intat_shutdown(bootlist_fn function, void *arg, int queue){ printf("%s: called for function %x, arg %x\n", __FUNCTION__, function, arg); return 0;}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -