adb: keep mac build happy

Use FIONREAD instead of TIOCINQ

Change-Id: Ic9db0228a51c546a798c70f08f2e644a1a376120
This commit is contained in:
JP Abgrall 2011-03-29 12:36:22 -07:00
parent bab2c6a883
commit b40367e7bc
1 changed files with 1 additions and 1 deletions

View File

@ -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);