码迷,mamicode.com
首页 >  
搜索关键字:fops    ( 47个结果
/proc/iomem和/proc/ioports对应的fops
/proc/iomem和/proc/ioports对应的fops static int __init ioresources_init(void) { struct proc_dir_entry *entry; entry = create_proc_entry("ioports", 0, NULL...
分类:其他好文   时间:2015-07-09 17:42:22    阅读次数:208
通过/dev/mem只能访问高端内存以下的内核线性地址空间
http://blog.chinaunix.net/uid-20564848-id-74706.html 《/proc/iomem和/proc /ioports对应的fops》 《浅析pc机上如何将vmlinuz- 2.6.31-14-generic解压出vmlinux》 fs_initcall(c...
分类:其他好文   时间:2015-07-09 17:41:05    阅读次数:199
I/O多路复用模型之select(二) 本文地址:http://www.itpux.com/thre
Select函数实现原理分析(转载) select需要驱动程序的支持,驱动程序实现fops内的poll函数。select通过每个设备文件对应的poll函数提供的信息判断当前是否有资源可用(如可读或写),如果有的话则返回可用资源的文...
分类:Web程序   时间:2015-02-02 16:12:50    阅读次数:190
驱动笔记 - 混杂设备常用函数
#include 混杂设备:主设备号为10的字符设备struct miscdevice{ int minor; //次设备号 const char *name; const struct file_operations *fops; struct list_head list; struct dev...
分类:其他好文   时间:2014-11-19 23:53:21    阅读次数:225
TEST
static struct file_operations s3c24xx_leds_fops ={ .owner = THIS_MODULE , //.open = s3c24xx_leds_open, .read = s3c24xx_leds_read , .write = s3c24xx_le...
分类:其他好文   时间:2014-10-16 16:09:12    阅读次数:138
TEST2
static struct file_operations s3c24xx_leds_fops ={ .owner = THIS_MODULE , //.open = s3c24xx_leds_open, .read = s3c24xx_leds_read , .write = s3c24xx_le...
分类:其他好文   时间:2014-10-16 15:51:02    阅读次数:184
输入子系统概念介绍
输入子系统在内核中的位置:/driver/input drivers/input/input.c: input_init ---> err = register_chrdev(INPUT_MAJOR, "input", &input_fops); static const struct file_o...
分类:其他好文   时间:2014-05-05 23:34:42    阅读次数:516
47条   上一页 1 ... 3 4 5
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!