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
|
#include <linux/kernel.h>
#include <linux/module.h>
int global_sym = 0;
EXPORT_SYMBOL(global_sym);
static spinlock_t my_lock;
int testexport(void)
{
printk("in testexport\n");
return 0;
}
EXPORT_SYMBOL(testexport);
int testexport2(spinlock_t *t)
{
printk("in testexport\n");
return 0;
}
EXPORT_SYMBOL(testexport2);
int hello_init(void)
{
printk(KERN_INFO "Hello World!\n");
return 0;
}
void hello_exit(void)
{
printk(KERN_INFO "Bye World!\n");
}
module_init(hello_init);
module_exit(hello_exit);
MODULE_LICENSE("GPL");
|