Linux read 阻塞与非阻塞读取
read函数非阻塞读取会立即返回。
阻塞读取通过设置也可在没有数据时立即返回
#include <termios.h>
struct termios tio;
tio.c_cc[VTIME] = 0; // timeout in deciseconds for noncanonical read
tio.c_cc[VMIN] = 0; // minimum number of characters for noncanonical read
tcsetattr(fd, TCSANOW, &tio);
需要注意的是,如果以O_NONBLOCK
打开文件/socket/FIFO,且设置tio.c_cc[VTIME]
非0,也就是说,对非阻塞模式执行阻塞读取,返回 -1,错误码EAGAIN, Resource temporarily unavailable
。只有tio.c_cc[VTIME] = 0
,读取时才是非阻塞的,返回0.