?? export.c
字號:
/* * export.c -- export a symbol (maybe a versioned one) (v2.1) * * Tested with 2.1.43 on the x86 (novers) */#ifndef __KERNEL__# define __KERNEL__#endif#ifndef MODULE# define MODULE#endif/* This stuff might go in the Makefile, but I'd better put it here */#ifndef EXPORT_SYMTAB# define EXPORT_SYMTAB /* need this one 'cause we export symbols */#endif#include <linux/autoconf.h> /* retrieve the CONFIG_* macros */#if defined(CONFIG_MODVERSIONS) && !defined(MODVERSIONS)# define MODVERSIONS#endif/* * Include the versioned definitions for both kernel symbols and our * symbol, *unless* we are generating checksums (__GENKSYMS__ * defined) */#if defined(MODVERSIONS) && !defined(__GENKSYMS__)# include <linux/modversions.h># include "export.ver" /* redefine "export_function" to include CRC */#endif/* * Everything from now on is normal. The previous stuff can be replaced * by "$(CC) -D__KERNEL__ -DMODULE -DMODVERSIONS -DEXPORT_SYMTAB \ * -include $(INCLUDEDIR)/linux/modversions.h" if versioning * is enabled, and the following (simpler) cmdline for genksyms: * "$(CC) -E -DCONFIG_MODVERSIONS -DEXPORT_SYMTAB" */#define EXPORT_SYMTAB /* Yes, I export a symbol table */#include <linux/module.h>#include <linux/sched.h>#include <linux/kernel.h> /* printk() */#include <linux/kerneld.h>#include "sysdep-2.1.h"/* our dumb function, with two dumb arguments */int export_function(int a, int b);#ifdef __USE_OLD_SYMTAB__ static struct symbol_table export_syms = { #include <linux/symtab_begin.h> X(export_function), #include <linux/symtab_end.h> };#else EXPORT_SYMBOL(export_function);#endifint init_module(void){ REGISTER_SYMTAB(&export_syms); return 0;}void cleanup_module(void){}int export_function(int a, int b){return a+b;}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -