forked from manishkjain21/Kernel_Modules
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathkernel_thread.mod.c
More file actions
39 lines (33 loc) · 983 Bytes
/
kernel_thread.mod.c
File metadata and controls
39 lines (33 loc) · 983 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
#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
.arch = MODULE_ARCH_INIT,
};
static const struct modversion_info ____versions[]
__used
__attribute__((section("__versions"))) = {
{ 0x62c440a7, "module_layout" },
{ 0xc3fe87c8, "param_ops_uint" },
{ 0xa4f3dfa0, "wake_up_process" },
{ 0x2dc7be74, "kthread_create_on_node" },
{ 0x7d11c268, "jiffies" },
{ 0x1000e51, "schedule" },
{ 0x2e5810c6, "__aeabi_unwind_cpp_pr1" },
{ 0x27e1a049, "printk" },
{ 0xefd6cf06, "__aeabi_unwind_cpp_pr0" },
{ 0x45a55ec8, "__iounmap" },
{ 0x40a6f522, "__arm_ioremap" },
};
static const char __module_depends[]
__used
__attribute__((section(".modinfo"))) =
"depends=";
MODULE_INFO(srcversion, "149372F769F01AAE4CAAAA3");