Chinaunix首页 | 论坛 | 博客
  • 博客访问: 699415
  • 博文数量: 152
  • 博客积分: 0
  • 博客等级: 民兵
  • 技术积分: 1793
  • 用 户 组: 普通用户
  • 注册时间: 2013-09-12 12:26
个人简介

相信自己,只有不想做的,没有做不到的。

文章分类

全部博文(152)

文章存档

2021年(1)

2015年(2)

2014年(74)

2013年(75)

分类: LINUX

2013-12-12 12:59:36

//异步信号
//1,定义
struct fasync_struct *hello_fasync_struct;
//2初始化
.fasync = hello_fasync,
//初始化信号处理
static int hello_fasync (int fd, struct file *file, int on)
{
 return fasync_helper(fd, file, on, &hello_fasync_struct);;
}
//3判断是否有信号被定义, 有这读操作被唤醒,KILL——FASYNC 给应用层发送数据
if(hello_fasync_struct)
    kill_fasync(&hello_fasync_struct, SIGIO, POLL_IN);
//4初始化信号处理
static int hello_fasync (int fd, struct file *file, int on)
{
 return fasync_helper(fd, file, on, &hello_fasync_struct);;
}


阅读(357) | 评论(0) | 转发(0) |
给主人留下些什么吧!~~