kill_async与fasync_helper函数

fasync是为了使驱动的读写和应用程序的读写分开,使得应用程序可以在驱动读写的时候去做别的事。

应用程序通过fcntl给自己的SIGIO信号安装自己的响应函数,

驱动通过kill_fasync(&async, SIGIO, POLL_IN); 发SIGIO信号给应用程序,应用程序就调用自己安装的响应函数去处理。

fasync_helper作用就是初始化fasync这个东西,包括分配内存和设置属性,最后在驱动的release里把fasync_helper初始化的东西free掉。

 

这里有一份自己写的完整的内核驱动发送SIGIO和用户空间接收SIGIO的代码,测试过ok:

http://download.csdn.net/detail/luckywang1103/9050619

有些系统没有mdev的需要自己手动创建设备节点:在/dev/目录下mknod fasync_dev c 250 0

 


下面是驱动程序和测试的应用程序,还没试过,先摘下来;

转自:http://blog.csdn.net/mirkerson/article/details/7443907

驱动程序

#include <linux/module.h>
#include <linux/init.h>
#include <linux/fs.h>
#include <linux/kdev_t.h>
#include <linux/cdev.h>
#include <linux/kernel.h>
#include <linux/string.h>
#include <asm/uaccess.h>

#define DEVICE_NAME "chardev"

static int chardev_open(struct inode *inodp, struct file *filp);
static ssize_t chardev_read(struct file *filp, char __user *buff, size_t count, loff_t *f_pos);
static ssize_t chardev_write(struct file *filp, const char __user *buff, size_t count, loff_t *f_pos);
static int chardev_fasync(int fd, struct file *filp, int mode);
static int chardev_release(struct inode *inodp, struct file *filp);

static struct file_operations chardev_fops = {
        .open = chardev_open,
        .read = chardev_read,
        .write = chardev_write,
        .fasync = chardev_fasync,
        .release = chardev_release,
};

static struct fasync_struct *async = NULL;
static struct semaphore sem;
static struct cdev *cdevp;
static dev_t devno;
static char buffer[8192];

static int chardev_open(struct inode *inodp, struct file *filp)
{
        return 0;
}

static ssize_t chardev_read(struct file *filp, char __user *buff, size_t count, loff_t *f_pos)
{
        if (down_interruptible(&sem))
                goto err;

        count = strlen(buffer);
        copy_to_user(buff, buffer, count);

        up(&sem);
        return count;
err:
        return -ERESTARTSYS;
}

static ssize_t chardev_write(struct file *filp, const char __user *buff, size_t count, loff_t *f_pos)
{
        if (down_interruptible(&sem))
                goto err;

        memset(buffer, '/0', sizeof(buffer));
        copy_from_user(buffer, buff, count);

        up(&sem);

        if (async)
                kill_fasync(&async, SIGIO, POLL_IN);

        return count;
err:
        return -ERESTARTSYS;
}

static int chardev_fasync(int fd, struct file *filp, int mode)
{
        return fasync_helper(fd, filp, mode, &async);
}

static int chardev_release(struct inode *inodp, struct file *filp)
{
        return chardev_fasync(-1, filp, 0);
}

static int __init chardev_init(void)
{
        int ret;

        ret = alloc_chrdev_region(&devno, 0, 1, DEVICE_NAME);
        if (ret < 0)
                goto out;

        init_MUTEX(&sem);
        cdevp = cdev_alloc();
        if (!cdevp)
                goto alloc_err;

        cdev_init(cdevp, &chardev_fops);
        ret = cdev_add(cdevp, devno, 1);
        if (!ret)
                goto out;
alloc_err:
        unregister_chrdev_region(devno, 1);
out:
        return ret;
}

static void __exit chardev_exit(void)
{
        cdev_del(cdevp);

        unregister_chrdev_region(devno, 1);
}

MODULE_LICENSE("GPL");

module_init(chardev_init);
module_exit(chardev_exit);

应用程序:

/*
 * asynctest.c: use async notification to read stdin
 *
 * Copyright (C) 2001 Alessandro Rubini and Jonathan Corbet
 * Copyright (C) 2001 O'Reilly & Associates
 *
 * The source code in this file can be freely used, adapted,
 * and redistributed in source or binary form, so long as an
 * acknowledgment appears in derived source files.  The citation
 * should list that the code comes from the book "Linux Device
 * Drivers" by Alessandro Rubini and Jonathan Corbet, published
 * by O'Reilly & Associates.   No warranty is attached;
 * we cannot take responsibility for errors or fitness for use.
 */

#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <unistd.h>
#include <signal.h>
#include <fcntl.h>

int gotdata=0;
static int i = 0;
void sighandler(int signo)
{
    if (signo==SIGIO)
        gotdata++;
    printf("/nin sighandler %d/n",i);
    return;
}

char buffer[4096];

int main(int argc, char **argv)
{
    int count;
    struct sigaction action;
    FILE *fp;
    int fd = 0;

    fd = open("/dev/test",O_RDWR);
    memset(&action, 0, sizeof(action));
    action.sa_handler = sighandler;
    action.sa_flags = 0;

    sigaction(SIGIO, &action, NULL);

    fcntl(fd, F_SETOWN, getpid());
    fcntl(fd, F_SETFL, fcntl(fd, F_GETFL) | FASYNC);
 ++i;

    while(i != 2) {
    //printf("/nin while %d/n",++i);
        /* this only returns if a signal arrives */
#if 0
    fp = fopen("log2","aw+");
    fprintf(fp,"/nin while %d/n",++i);
    fclose(fp);
#endif
        sleep(2); /* one day */
        if (!gotdata)
            continue;
        count=read(fd, buffer, 4);
    printf("/nin while %d/n",++i);
        /* buggy: if avail data is more than 4kbytes... */
        write(fd,buffer,count);
    //printf("/nin while %d/n",++i);
        gotdata=0;
    }
}




  • 1
    点赞
  • 9
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
`apply_async`是Python的multiprocessing库中的一个函数,它用于异步执行函数。与`apply`函数不同,`apply_async`函数不会阻塞主进程,而是立即返回一个AsyncResult对象,该对象可以用于查询函数的执行状态或获取函数的返回值。 `apply_async`函数的基本语法如下: ```python result = pool.apply_async(func, args=(), kwds={}, callback=None, error_callback=None) ``` 其中,参数`func`是要执行的函数,`args`是函数的位置参数(元组),`kwds`是函数的关键字参数(字典),`callback`是函数执行完成后的回调函数,`error_callback`是函数执行出错时的回调函数,这两个回调函数都是可选的。 下面是一个使用`apply_async`函数的简单例子,该例子创建了一个进程池,并使用`apply_async`函数异步执行了一个函数: ```python import multiprocessing as mp def foo(x): return x * x if __name__ == '__main__': pool = mp.Pool(processes=4) result = pool.apply_async(foo, args=(10,)) print(result.get()) pool.close() pool.join() ``` 在上面的代码中,我们创建了一个进程池,然后使用`apply_async`函数异步执行了函数`foo`,并将参数`10`传递给该函数。最后,我们使用`get`方法获取函数的返回值。 需要注意的是,`apply_async`函数只能接受一个位置参数,如果要传递多个参数,可以使用元组或字典。如果要传递可变数量的参数,可以使用`args`或`kwargs`参数。

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值