agilent-dmm: Mark serial read call as nonblocking.
This driver opens the port with the SERIAL_NONBLOCK flag, so this call is already a nonblocking one, and is handled appropriately.
This commit is contained in:
parent
2e360339f9
commit
e0b781a45b
|
@ -106,7 +106,7 @@ SR_PRIV int agdmm_receive_data(int fd, int revents, void *cb_data)
|
|||
if (revents == G_IO_IN) {
|
||||
/* Serial data arrived. */
|
||||
while(AGDMM_BUFSIZE - devc->buflen - 1 > 0) {
|
||||
len = serial_read(serial, devc->buf + devc->buflen, 1);
|
||||
len = serial_read_nonblocking(serial, devc->buf + devc->buflen, 1);
|
||||
if (len < 1)
|
||||
break;
|
||||
devc->buflen += len;
|
||||
|
|
Loading…
Reference in New Issue