diff options
| author | 2019-09-26 09:40:20 -0700 | |
|---|---|---|
| committer | 2019-09-26 09:40:20 -0700 | |
| commit | b2d4bf452125ec8a4996e14462d41e468553a067 (patch) | |
| tree | 624ff7125532552fca175414ea61408f39d6afab /libs/binder/IPCThreadState.cpp | |
| parent | ab2037d6afbb3b4a31129fb7051d67663485726d (diff) | |
| parent | ec6297ee7d3522768f1962b49fc08d1ce3788e80 (diff) | |
Merge "libbinder: Replace abort with LOG_ALWAYS_FATAL" am: 4f330b8eca am: a4b171610f
am: ec6297ee7d
Change-Id: Ic7bf3b3a78ee438dbf572a1badf2b6d7e28ac36c
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 |