Linux read()函数

1 定义

#include <unistd.h>
ssize_t read(int fd, void *buf, size_t count);
    参数解析:见参考资料[2]P54

2 关于阻塞
    参考资料[1]指出,默认情况下read()是阻塞的(没有数据可读时,调用read()的线程将会被挂起,直到有数据可读为止)。read()并没有可以改变此行为的参数,唯有通过open()函数来达到使read()调用不阻塞的目的。

#include <sys/types.h>
#include <sys/stat.h>
#include <fcntl.h>
int open(const char *pathname, int flags);
int open(const char *pathname, int flags, mode_t mode);
    参数解析:参考资料[2]P48。
    参考资料[1]以及参考资料[2]P48都说明,指定flags参数为 O_NONBLOCK,则文件打开操作操作和后续的I/O操作都是非阻塞的。

参考资料

[1]linux文件设备与I/O:read/write函数 与 阻塞 Block 

[2]UNIX环境高级编程(第2版)

你可能感兴趣的:(Linux read()函数)