export.c

来自「LINUX设备驱动程序第二版配套源码 第一版的内容」· C语言 代码 · 共 77 行

C
77
字号
/* * 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 + =
减小字号Ctrl + -
显示快捷键?