From b9c556e44326b40b2c927a0a5b5626332a8c9587 Mon Sep 17 00:00:00 2001 From: hunt Date: Tue, 22 Mar 2005 08:57:11 +0000 Subject: *** empty log message *** --- runtime/docs/html/dtr_8mod_8c-source.html | 59 +++++++++++++++++++++++++++++++ 1 file changed, 59 insertions(+) create mode 100644 runtime/docs/html/dtr_8mod_8c-source.html (limited to 'runtime/docs/html/dtr_8mod_8c-source.html') diff --git a/runtime/docs/html/dtr_8mod_8c-source.html b/runtime/docs/html/dtr_8mod_8c-source.html new file mode 100644 index 00000000..38f5967a --- /dev/null +++ b/runtime/docs/html/dtr_8mod_8c-source.html @@ -0,0 +1,59 @@ + + +SystemTap: probes/shellsnoop/dtr.mod.c Source File + + + +
Main Page | Data Structures | Directories | File List | Data Fields | Globals | Related Pages
+ +

dtr.mod.c

00001 #include <linux/module.h>
+00002 #include <linux/vermagic.h>
+00003 #include <linux/compiler.h>
+00004 
+00005 MODULE_INFO(vermagic, VERMAGIC_STRING);
+00006 
+00007 #undef unix
+00008 struct module __this_module
+00009 __attribute__((section(".gnu.linkonce.this_module"))) = {
+00010  .name = __stringify(KBUILD_MODNAME),
+00011  .init = init_module,
+00012 #ifdef CONFIG_MODULE_UNLOAD
+00013  .exit = cleanup_module,
+00014 #endif
+00015 };
+00016 
+00017 static const struct modversion_info ____versions[]
+00018 __attribute_used__
+00019 __attribute__((section("__versions"))) = {
+00020         { 0x506abef7, "struct_module" },
+00021         { 0x1b9aca3f, "jprobe_return" },
+00022         { 0x45e5f47f, "register_kprobe" },
+00023         { 0x1e736243, "unregister_kprobe" },
+00024         { 0xdd03a51e, "register_jprobe" },
+00025         { 0x49a83d3a, "unregister_jprobe" },
+00026         { 0xaa27f890, "__get_user_8" },
+00027         { 0x21e5679c, "copy_user_generic" },
+00028         { 0x3fa03a97, "memset" },
+00029         { 0xc16fe12d, "__memcpy" },
+00030         { 0xe914e41e, "strcpy" },
+00031         { 0xe2d5255a, "strcmp" },
+00032         { 0xe3b0192b, "vscnprintf" },
+00033         { 0x8e3c9cc3, "vprintk" },
+00034         { 0xdd132261, "printk" },
+00035         { 0x2fd1d81c, "vfree" },
+00036         { 0x37a0cba, "kfree" },
+00037         { 0xd6ee688f, "vmalloc" },
+00038         { 0x8ce16b3f, "__kmalloc" },
+00039 };
+00040 
+00041 static const char __module_depends[]
+00042 __attribute_used__
+00043 __attribute__((section(".modinfo"))) =
+00044 "depends=";
+00045 
+00046 
+00047 MODULE_INFO(srcversion, "D6A3BE8A54CB181A59924B3");
+

+Generated on Tue Mar 22 00:32:02 2005 for SystemTap. + -- cgit