mirror of
https://github.com/GOSTSec/sgminer
synced 2025-03-10 20:51:03 +00:00
Timeouts on avalon_read and avalon_write should be 100ms.
This commit is contained in:
parent
4ddbe24135
commit
c7b1b03085
@ -309,7 +309,7 @@ static int avalon_write(int fd, char *buf, ssize_t len)
|
||||
fd_set wd;
|
||||
|
||||
timeout.tv_sec = 0;
|
||||
timeout.tv_usec = 1000;
|
||||
timeout.tv_usec = 100000;
|
||||
FD_ZERO(&wd);
|
||||
FD_SET((SOCKETTYPE)fd, &wd);
|
||||
ret = select(fd + 1, NULL, &wd, NULL, &timeout);
|
||||
@ -339,7 +339,7 @@ static int avalon_read(int fd, char *buf, ssize_t len)
|
||||
fd_set rd;
|
||||
|
||||
timeout.tv_sec = 0;
|
||||
timeout.tv_usec = 1000;
|
||||
timeout.tv_usec = 100000;
|
||||
FD_ZERO(&rd);
|
||||
FD_SET((SOCKETTYPE)fd, &rd);
|
||||
ret = select(fd + 1, &rd, NULL, NULL, &timeout);
|
||||
|
Loading…
x
Reference in New Issue
Block a user