Merge "health storage AIDL HAL logs more."

This commit is contained in:
Treehugger Robot 2021-11-29 23:33:55 +00:00 committed by Gerrit Code Review
commit 4b0c7f0e7a

View file

@ -24,14 +24,19 @@ using aidl::android::hardware::health::storage::Storage;
using std::string_literals::operator""s;
int main() {
LOG(INFO) << "Health storage AIDL HAL starting...";
ABinderProcess_setThreadPoolMaxThreadCount(0);
// make a default storage service
auto storage = ndk::SharedRefBase::make<Storage>();
const std::string name = Storage::descriptor + "/default"s;
LOG(INFO) << "Health storage AIDL HAL registering...";
CHECK_EQ(STATUS_OK,
AServiceManager_registerLazyService(storage->asBinder().get(), name.c_str()));
LOG(INFO) << "Health storage AIDL HAL joining...";
ABinderProcess_joinThreadPool();
LOG(ERROR) << "Health storage AIDL HAL join thread ends, exiting...";
return EXIT_FAILURE; // should not reach
}