📄 globalvar.mod.c
字号:
#include <linux/module.h>#include <linux/vermagic.h>#include <linux/compiler.h>MODULE_INFO(vermagic, VERMAGIC_STRING);#undef unixstruct module __this_module__attribute__((section(".gnu.linkonce.this_module"))) = { .name = __stringify(KBUILD_MODNAME), .init = init_module,#ifdef CONFIG_MODULE_UNLOAD .exit = cleanup_module,#endif};static const struct modversion_info ____versions[]__attribute_used____attribute__((section("__versions"))) = { { 0xb21dd45e, "struct_module" }, { 0x7f6a6b88, "__wake_up" }, { 0xf2a644fb, "copy_from_user" }, { 0x60a4461c, "__up_wakeup" }, { 0x2da418b5, "copy_to_user" }, { 0x625acc81, "__down_failed_interruptible" }, { 0xd533bec7, "__might_sleep" }, { 0x41e653ad, "finish_wait" }, { 0xcf3dc120, "prepare_to_wait" }, { 0x4292364c, "schedule" }, { 0xf02c10c6, "autoremove_wake_function" }, { 0xc192d491, "unregister_chrdev" }, { 0x1b7d4074, "printk" }, { 0x41b46c5d, "register_chrdev" },};static const char __module_depends[]__attribute_used____attribute__((section(".modinfo"))) ="depends=";MODULE_INFO(srcversion, "0122A14ED8A8816476A7A05");
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -