?? pm_test.c
字號:
/* Power Managment Test Module. RTSoft Co. 2002 */ /* The necessary header files *//* Standard in kernel modules */#include <linux/kernel.h> /* We're doing kernel work */#include <linux/module.h> /* Specifically, a module */#define CONFIG_PM#include <linux/pm.h>static int pmdata = -1;/* Initialize the module - register the proc file */int init_module(){ pm_send_all(PM_SUSPEND,&pmdata); return(0);}/* Cleanup - unregister our file from /proc */void cleanup_module(){ pm_send_all(PM_RESUME,NULL);}MODULE_LICENSE( "GPL" );
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -