Linux I/O models:修订间差异

来自WHY42
imported>Soleverlee
imported>Soleverlee
第8行: 第8行:
=asynchronous IO=
=asynchronous IO=


*http://www.linuxidc.com/Linux/2015-07/120337.htm
*http://blog.csdn.net/lovingprince/article/details/6426009
[[Category:Linux/Unix]]
[[Category:Linux/Unix]]

2016年4月14日 (四) 13:33的版本

blocking IO

阻塞IO模型是最常见的IO模型了,对于所有的“慢速设备”(socket、pipe、fifo、terminal)的IO默认的方式都是阻塞的方式。阻塞就是进程放弃cpu,让给其他进程使用cpu。进程阻塞最显著的表现就是“进程睡眠了”。阻塞的时间通常取决于“数据”是否到来。 文件:Blocking-IO.png

nonblocking IO

IO multiplexing

signal driven IO

asynchronous IO