我是靠谱客的博主 粗心菠萝,最近开发中收集的这篇文章主要介绍Linux信号异步通知应用和驱动编程,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

一:设备驱动层

 struct x_dev{

    ...

   struct fasync_struct *async;

};

/*fasync函数*/

static int x_fasync(int fd, struct file *filp, int mode)

{

    struct x_dev *dev = filp->private_data;

    return fasync_helper(fd, filp, mode, &dev->async);

}

 

/*添加到 file_operations*/

static const struct file_operations x_fops = {
     ...
    .fasync      =     x_fasync,
    ....
};

 

/*读写函数中释放信号*/

 struct x_dev *dev = filp->private_data;

if(dev->async)

    kill_fasync(&dev->async, SIGIO, POLL_IN(或者POLL_OUT));

 

/*release函数中删除*/

  x_fasync(-1, filp, 0 );

 

二:用户空间

static void signal_handler(int signum)

{

}

 

 void main(void)

{

    int fd, flag;

    fd = open("/dev/xx", O_RDWR, S_IRUSR | S_IWUSR);

    signal(SIGIO, signal_handler);

    fcntl(fd, F_SETOWN, getpid());

    flag = fcntl(fd, F_GETFL);

    fcntl(fd, F_SETFL, flag | FASYNC);

    while(1);

}

 

 

 

最后

以上就是粗心菠萝为你收集整理的Linux信号异步通知应用和驱动编程的全部内容,希望文章能够帮你解决Linux信号异步通知应用和驱动编程所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(47)

评论列表共有 0 条评论

立即
投稿
返回
顶部