drcom.mod.c

来自「在linux上的计费认证 解压接可以了 的」· C语言 代码 · 共 46 行

C
46
字号
#include <linux/module.h>#include <linux/vermagic.h>#include <linux/compiler.h>MODULE_INFO(vermagic, VERMAGIC_STRING);struct module __this_module__attribute__((section(".gnu.linkonce.this_module"))) = { .name = KBUILD_MODNAME, .init = init_module,#ifdef CONFIG_MODULE_UNLOAD .exit = cleanup_module,#endif};static const struct modversion_info ____versions[]__attribute_used____attribute__((section("__versions"))) = {	{ 0xaa439674, "struct_module" },	{ 0x12da5bb2, "__kmalloc" },	{ 0x6d0f185c, "security_ops" },	{ 0xadf1ed7, "remove_proc_entry" },	{ 0x7d11c268, "jiffies" },	{ 0xda4008e6, "cond_resched" },	{ 0xc659d5a, "del_timer_sync" },	{ 0x6cea116c, "proc_mkdir" },	{ 0x625acc81, "__down_failed_interruptible" },	{ 0xf3b39202, "mod_timer" },	{ 0xfd7fe602, "inet_stream_ops" },	{ 0x2438acd6, "inet_dgram_ops" },	{ 0xe4027375, "create_proc_entry" },	{ 0x258ea73, "wake_up_process" },	{ 0x39e9a914, "proc_root" },	{ 0xd0b91f9b, "init_timer" },	{ 0x932da67e, "kill_proc" },	{ 0x60a4461c, "__up_wakeup" },};static const char __module_depends[]__attribute_used____attribute__((section(".modinfo"))) ="depends=";MODULE_INFO(srcversion, "BB49193A50A382D28F4D941");

⌨️ 快捷键说明

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