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

📄 slaved.c

📁 linux driver 第二版 随书源码
💻 C
字号:
/* * slave.c -- the slave module of a master/slave pair using kerneld * * Tested with 2.0 on the x86, Sparc * Tested with 2.1.43 on the x86 */#ifndef __KERNEL__#  define __KERNEL__#endif#ifndef MODULE#  define MODULE#endif#include <linux/module.h>int init_module(void){return 0;}void cleanup_module(void){}

⌨️ 快捷键说明

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