blob: 38cd87cf743a7b4bb8221fe281dfc937410965f6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
|
#include "miscfn.h"
#include <string.h>
#include <sys/time.h>
#include <sys/types.h>
#include <unistd.h>
#include "tread.h"
int timedRead(int fd, void * bufptr, int length) {
int bytesRead;
int total = 0;
char * buf = bufptr;
fd_set readSet;
struct timeval tv;
while (total < length) {
FD_ZERO(&readSet);
FD_SET(fd, &readSet);
tv.tv_sec = 5; /* FIXME: this should be configurable */
tv.tv_usec = 0;
if (select(fd + 1, &readSet, NULL, NULL, &tv) != 1)
return total;
bytesRead = read(fd, buf + total, length - total);
if (bytesRead < 0)
return bytesRead;
else if (bytesRead == 0)
return total;
total += bytesRead;
}
return length;
}
|