We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 5944038 + 9f3668b commit c9e4fdbCopy full SHA for c9e4fdb
libs/binder/ProcessState.cpp
@@ -621,6 +621,11 @@ ProcessState::ProcessState(const char* driver)
621
LOG_ALWAYS_FATAL_IF(!opened.ok(),
622
"Binder driver '%s' could not be opened. Error: %s. Terminating.",
623
driver, error.c_str());
624
+#else
625
+ if (!opened.ok()) {
626
+ ALOGE("Binder driver '%s' could not be opened. Error: %s. There may be future issues.",
627
+ driver, error.c_str());
628
+ }
629
#endif
630
631
if (opened.ok()) {
0 commit comments