- 论坛徽章:
- 0
|
关于read和write设置超时的实现
int
00210 IO::timeout_read(int fd, char* bp, size_t len, int timeout_ms,
00211 const char* log)
00212 {
00213 ASSERT(timeout_ms >; 0);
00214
00215 int ret = poll(fd, POLLIN | POLLPRI, timeout_ms);
00216 if (ret < 0)
00217 return IOERROR;
00218
00219 if (ret == 0) {
00220 if (log) logf(log, LOG_DEBUG, "poll timed out" ;
00221 return IOTIMEOUT;
00222 }
00223
00224 ASSERT(ret == 1);
00225
00226 ret = read(fd, bp, len);
00227
00228 if (ret < 0) {
00229 if (log) logf(log, LOG_ERR, "timeout_read error: %s", strerror(errno));
00230 return IOERROR;
00231 }
00232
00233 if (ret == 0) {
00234 return IOEOF;
00235 }
00236
00237 return ret;
00238 } |
|