diff options
Diffstat (limited to 'libs/binder/IPCThreadState.cpp')
| -rw-r--r-- | libs/binder/IPCThreadState.cpp | 4 | 
1 files changed, 4 insertions, 0 deletions
diff --git a/libs/binder/IPCThreadState.cpp b/libs/binder/IPCThreadState.cpp index 6e83faab7e..2ffa92779e 100644 --- a/libs/binder/IPCThreadState.cpp +++ b/libs/binder/IPCThreadState.cpp @@ -466,6 +466,10 @@ void IPCThreadState::joinThreadPool(bool isMain)              result = executeCommand(cmd); +        } else if (result != TIMED_OUT && result != -ECONNREFUSED && result != -EBADF) { +            ALOGE("talkWithDriver(fd=%d) returned unexpected error %d, aborting", +                  mProcess->mDriverFD, result); +            abort();          }          // After executing the command, ensure that the thread is returned to the  |