adb: keep mac build happy
Use FIONREAD instead of TIOCINQ Change-Id: Ic9db0228a51c546a798c70f08f2e644a1a376120
This commit is contained in:
parent
bab2c6a883
commit
b40367e7bc
|
@ -551,7 +551,7 @@ static void fdevent_subproc_event_func(int fd, unsigned ev, void *userdata)
|
|||
subproc_fde->force_eof = 1;
|
||||
|
||||
int rcount = 0;
|
||||
ioctl(subproc_fd, TIOCINQ, &rcount);
|
||||
ioctl(subproc_fd, FIONREAD, &rcount);
|
||||
D("subproc with fd=%d has rcount=%d err=%d\n",
|
||||
subproc_fd, rcount, errno);
|
||||
|
||||
|
|
Loading…
Reference in New Issue