搜索资源列表
anjian2
- 基于linux2.6.12和s3c2440的按键驱动,控制6个按键,有阻塞和非阻塞两种方式读-S3c2440 based linux2.6.12 and the key driver to control the six buttons, with blocking and nonblocking read in two ways
queue(IO)
- queue(阻塞IO) linux 驱动 源代码 -Linux driver source code of the queue (blocking IO)
IO-mode
- Linux驱动-IO方式的介绍 1 阻塞 I/O 2 非阻塞 I/O 3 多路转换 I/O 4 信号驱动 I/O--IO mode Linux driver introduces a blocking I/O 2 non-blocking I/O 3 multi-channel conversion I/O signal-driven I/O
memdev20120627_v3_sema
- linux_字符设备驱动_含阻塞等,适合当模版-linux_ character device driver _ containing obstruction, for when the template
key_drv
- 嵌入式linux按键驱动,支持阻塞和非阻塞读写,可以帮助入门linxu驱动-The embedded linux key driver to support blocking and nonblocking read and write, you can help the the entry linxu drive
queue_block
- linux 平台驱动程序中的阻塞和非阻塞IO模型-linux platform driver blocking and non-blocking IO Model
StringDriver
- LINUX2.6内核字符型设备驱动程序,采用了非阻塞机制、互斥机制,使用了poll接口。使用方法不用多说了,跟其他字符驱动没区别,可以自行百度。ps: Makefile也包含在里面了。-LINUX2.6 kernel character device driver, using a non-blocking mechanism, mutual exclusion mechanism, using a poll interface. Use Needless to say, no differen
buttons_block8
- 友善支臂mini2440开发板,按键驱动成功,并且带有阻塞功能!-A friendly arm mini2440 development board, the key driver successfully, and with blocking feature!
poll
- 一个linux dirver示例:关于poll阻塞的简明而又很好的示例。-A linux dirver example: Brief but good example on poll obstruction.
thread
- thrs_data结构中的几个变量用于读数据线程和显示线程的开始控制和结束控制。start_read:当二个线程同时启动或显示线程先启动时,保证读数据线程先使用缓冲区,=1表示读数据线程已使用了缓冲区;start_disp:在读数据线程对缓冲区进行第一轮操作时,当它已将2个缓冲区写满,而此时显示线程还没有启动或还没有使用过缓冲区,这时应将读数据线程阻塞住,防止它覆盖掉缓冲区中未显示的数据,=1表示显示线程已启动并已使用了缓冲区。在后续交替读数据和显示数据的过程中,由互斥锁来协调二个线程之间的关系