import.c
上传用户:wudi5211
上传日期:2010-01-21
资源大小:607k
文件大小:1k
源码类别:

嵌入式Linux

开发平台:

C/C++

  1. /*
  2.  * import.c -- a module using a symbol from export.c (v2.1)
  3.  *
  4.  * Tested with 2.1.43 on the x86 (novers)
  5.  */
  6. #ifndef __KERNEL__
  7. #  define __KERNEL__
  8. #endif
  9. #ifndef MODULE
  10. #  define MODULE
  11. #endif
  12. /*
  13.  * Use versioning if needed
  14.  */
  15. #include <linux/autoconf.h> /* retrieve the CONFIG_* macros */
  16. #ifdef CONFIG_MODVERSIONS
  17. #   undef MODVERSIONS /* it might be defined */
  18. #   define MODVERSIONS
  19. #endif
  20. #ifdef MODVERSIONS
  21. #  include <linux/modversions.h>
  22. #  include "export.ver"
  23. #endif
  24. #include <linux/module.h>
  25. #include <linux/kernel.h>
  26. extern int export_function(int, int);
  27. int init_module(void)
  28. {
  29.     int i = export_function(2,2);
  30.     printk("import: my mate tells that 2+2 = %in",i);
  31.     return 0;
  32. }
  33. void cleanup_module(void)
  34. {}