Chinaunix首页 | 论坛 | 博客
  • 博客访问: 1427201
  • 博文数量: 430
  • 博客积分: 9995
  • 博客等级: 中将
  • 技术积分: 4388
  • 用 户 组: 普通用户
  • 注册时间: 2006-05-24 18:04
文章存档

2013年(1)

2008年(2)

2007年(14)

2006年(413)

分类:

2006-10-16 15:48:12

 
 
static int users = 0;
static int radio_open(stuct video_device *dev, int flags)
{
if(users)
return -EBUSY;
users++;
MOD_INC_USE_COUNT;
return 0;
}
At open time we need to do nothing but check if someone else is also using the radio card. If nobody is
using it we make a note that we are using it, then we ensure that nobody unloads our driver on us.
static int radio_close(struct video_device *dev)
{
users-;
MOD_DEC_USE_COUNT;
}
阅读(574) | 评论(0) | 转发(0) |
给主人留下些什么吧!~~