Chinaunix首页 | 论坛 | 博客
  • 博客访问: 177031
  • 博文数量: 69
  • 博客积分: 2627
  • 博客等级: 少校
  • 技术积分: 715
  • 用 户 组: 普通用户
  • 注册时间: 2008-10-24 22:37
文章分类

全部博文(69)

文章存档

2017年(3)

2014年(1)

2013年(4)

2012年(6)

2011年(21)

2010年(15)

2009年(19)

我的朋友

分类: LINUX

2010-01-04 14:33:38




#include
#include
#include
#include
#include
#include

static unsigned long data=0;
static struct tasklet_struct tasklet;

static void mylet(unsigned long data){
  printk("<1> tasklet running.\n");
  return;
}

static int __init mytasklet_init(void){
  printk("<1> init...\n");
  tasklet_init(&tasklet,mylet,data);
  tasklet_schedule(&tasklet);
  return 0;
}

static void __exit mytasklet_exit(void){
  tasklet_kill(&tasklet);
  printk("<1> exit...\n");
}

MODULE_LICENSE("GPL");

module_init(mytasklet_init);
module_exit(mytasklet_exit);


这个例子是从网上找的,具体从哪找的,不记得了.

 
阅读(400) | 评论(0) | 转发(0) |
0

上一篇:关于ioctl

下一篇:hello world module

给主人留下些什么吧!~~