Sophie

Sophie

distrib > Mandriva > current > i586 > media > contrib-release > by-pkgid > afdcfc364877ff5b5fc90cad008e9a19 > files > 122

lkmpg-1.1.0-15mdv2010.0.noarch.rpm

/*  
 *  hello-1.c - The simplest kernel module.
 */
#include <linux/module.h>	/* Needed by all modules */
#include <linux/kernel.h>	/* Needed for KERN_ALERT */

int init_module(void)
{
	printk("<1>Hello world 1.\n");

	/* 
	 * A non 0 return means init_module failed; module can't be loaded. 
	 */
	return 0;
}

void cleanup_module(void)
{
	printk(KERN_ALERT "Goodbye world 1.\n");
}