Handle error returned by IBurstContext::freeMemory
Unhandled HIDL errors result in a crash. This CL handles any errors from IBurstContext::freeMemory by logging the error and continuing with the rest of the function. Bug: N/A Test: mma Change-Id: Ic433a627137df4d275a1b0d2d800d592afc1a18c
This commit is contained in:
parent
176144714e
commit
1b09ea9224
1 changed files with 4 additions and 1 deletions
|
@ -176,7 +176,10 @@ void ExecutionBurstController::MemoryCache::freeMemory(const nn::SharedMemory& m
|
|||
std::lock_guard guard(mMutex);
|
||||
const int32_t slot = mMemoryIdToSlot.at(memory);
|
||||
if (mBurstContext) {
|
||||
mBurstContext->freeMemory(slot);
|
||||
const auto ret = mBurstContext->freeMemory(slot);
|
||||
if (!ret.isOk()) {
|
||||
LOG(ERROR) << "IBustContext::freeMemory failed: " << ret.description();
|
||||
}
|
||||
}
|
||||
mMemoryIdToSlot.erase(memory);
|
||||
mMemoryCache[slot] = {};
|
||||
|
|
Loading…
Reference in a new issue