diff options
author | Jiri Moskovcak <jmoskovc@redhat.com> | 2010-11-17 18:48:20 +0100 |
---|---|---|
committer | Jiri Moskovcak <jmoskovc@redhat.com> | 2010-11-17 18:48:20 +0100 |
commit | f6a4242cd0bf9c2acb959616cd2d825fb2d927c7 (patch) | |
tree | 2349c0b0ca288d222f3a25febcacaae482742dfa /examples/taint/taint.c | |
parent | ed3ec45536e97b570ff4164b18c050387fc05e78 (diff) | |
parent | a614b7372f96797c91850005d8730d88e9b38c12 (diff) | |
download | abrt-1.1.14.tar.gz abrt-1.1.14.tar.xz abrt-1.1.14.zip |
Merge branch '1.1.x' of ssh://git.fedorahosted.org/git/abrt into 1.1.x1.1.14
Diffstat (limited to 'examples/taint/taint.c')
-rw-r--r-- | examples/taint/taint.c | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/examples/taint/taint.c b/examples/taint/taint.c new file mode 100644 index 00000000..be6f0a20 --- /dev/null +++ b/examples/taint/taint.c @@ -0,0 +1,21 @@ +/* + * hello-1.c - The simplest kernel module. + */ +#include <linux/module.h> /* Needed by all modules */ +#include <linux/kernel.h> /* Needed for KERN_INFO */ + +int init_module(void) +{ + printk(KERN_INFO "Hello world\n"); + /* + * A non 0 return means init_module failed; module can't be loaded. + */ + return 0; +} + +void cleanup_module(void) +{ + printk(KERN_INFO "Goodbye world\n"); +} + +MODULE_LICENSE("TAINT"); |