diff options
author | 2019-09-26 16:05:56 +0000 | |
---|---|---|
committer | 2019-09-26 16:05:56 +0000 | |
commit | 4f330b8eca915554e9f59c4f8f98ebddbcb81203 (patch) | |
tree | f3bec8c308e40c70e526eb22214a7b8308049ddc /libs/binder/IPCThreadState.cpp | |
parent | ca5868f8824e4fdd38f19a4e97eb46a14636e93f (diff) | |
parent | 6adf33cee0be6d8b7da88fac45f36b6983fedaaa (diff) |
Merge "libbinder: Replace abort with LOG_ALWAYS_FATAL"
Diffstat (limited to 'libs/binder/IPCThreadState.cpp')
-rw-r--r-- | libs/binder/IPCThreadState.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/libs/binder/IPCThreadState.cpp b/libs/binder/IPCThreadState.cpp index 7c45c775c7..c6660973f8 100644 --- a/libs/binder/IPCThreadState.cpp +++ b/libs/binder/IPCThreadState.cpp @@ -597,9 +597,8 @@ void IPCThreadState::joinThreadPool(bool isMain) result = getAndExecuteCommand(); if (result < NO_ERROR && result != TIMED_OUT && result != -ECONNREFUSED && result != -EBADF) { - ALOGE("getAndExecuteCommand(fd=%d) returned unexpected error %d, aborting", + LOG_ALWAYS_FATAL("getAndExecuteCommand(fd=%d) returned unexpected error %d, aborting", mProcess->mDriverFD, result); - abort(); } // Let this thread exit the thread pool if it is no longer |