blob: b96328180f92e7b6a91127e8fa2379db19f59076 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
#include <linux/kernel.h>
#include <linux/module.h>
static int __init hang_init(void)
{
while(1);
return 0;
}
static void __exit hang_exit(void)
{
}
module_init(hang_init);
module_exit(hang_exit);
|