这些是对(用 )于 书的来源文件" Linux Device Drivers" 。 在这里你(们)找到已经包括在书里的完全来源。 我尽可能地测试了他们, 但是, 可以(可能)有一些问题离开了

源代码在线查看: import.c

软件大小: 206 K
上传用户: tianlin4431
关键词: Drivers Device Linux 测试
下载地址: 免注册下载 普通下载 VIP

相关代码

				/*				 * import.c -- a module using a symbol from export.c				 *				 * Tested with 2.0 on the x86, Sparc				 *********/								#ifndef __KERNEL__				#  define __KERNEL__				#endif				#ifndef MODULE				#  define MODULE				#endif								/*				 * Use versioning if needed				 */				#include  /* retrieve the CONFIG_* macros */				#ifdef CONFIG_MODVERSIONS				#   undef MODVERSIONS /* it might be defined */				#   define MODVERSIONS				#endif								#ifdef MODVERSIONS				#  include 				#  include "export.ver"				#endif												#include 								#include 								extern int export_function(int, int);								int init_module(void)				{				    int i = export_function(2,2);				    printk("import: my mate tells that 2+2 = %i\n",i);				    return 0;				}								void cleanup_module(void)				{}																							

相关资源