标签: linux
关于IO :同步、异步、阻塞、非阻塞
An asynchronous I/O operation does not cause the requesting process to be blocked;
两者的区别就在于synchronous IO做”IO operation”的时候会将process阻塞。
按照这个定义,之前所述的blocking IO,non-blocking IO,IO multiplexing都属于synchronous IO。
Continue reading 关于IO :同步、异步、阻塞、非阻塞