!1935 修复native daemon线程不安全问题

Merge pull request !1935 from zhangyixin/master
This commit is contained in:
openharmony_ci 2024-09-30 04:12:26 +00:00 committed by Gitee
commit b73d9f0a5d
No known key found for this signature in database
GPG Key ID: 173E9B9CA92EEF8F
3 changed files with 9 additions and 2 deletions

View File

@ -69,6 +69,11 @@ public:
std::shared_ptr<RawStack> GetRawStack();
void ReturnRawStack(std::shared_ptr<RawStack> rawStack);
size_t Size();
void ClearCache()
{
std::unique_lock<std::mutex> lock(cacheMutex_);
rawDataCacheQueue_.clear();
}
private:
std::mutex mutex_;

View File

@ -536,6 +536,7 @@ void HookManager::ReadShareMemory(const std::shared_ptr<HookManagerCtx>& hookCtx
reinterpret_cast<char*>(rawStack->data));
continue;
} else if (rawStack->stackConext->type == END_MSG) {
hookCtx->FlushStackArray();
if (!hookCtx->stackData->PutRawStack(rawStack, hookCtx->isRecordAccurately)) {
break;
}
@ -569,6 +570,9 @@ bool HookManager::DestroyPluginSession(const std::vector<uint32_t>& pluginIds)
if (item->shareMemoryBlock != nullptr) {
ShareMemoryAllocator::GetInstance().ReleaseMemoryBlockLocal(item->smbName);
}
if (item->stackData != nullptr) {
item->stackData->ClearCache();
}
}
if (fpHookData_) {
fclose(fpHookData_);
@ -615,7 +619,6 @@ bool HookManager::StopPluginSession(const std::vector<uint32_t>& pluginIds)
} else {
PROFILER_LOG_INFO(LOG_CORE, "StopPluginSession: pid(%d) is less or equal zero.", item->pid);
}
item->FlushStackArray();
CHECK_TRUE(item->stackPreprocess != nullptr, false, "stop StackPreprocess FAIL");
item->stackPreprocess->StopTakeResults();
PROFILER_LOG_INFO(LOG_CORE, "StopTakeResults success");

View File

@ -49,7 +49,6 @@ void StackDataRepeater::Close()
{
std::unique_lock<std::mutex> lock(mutex_);
rawDataQueue_.clear();
rawDataCacheQueue_.clear();
closed_ = true;
}
PROFILER_LOG_INFO(LOG_CORE, "StackDataRepeater Close, reducedStackCount_ : %" PRIx64 " ", reducedStackCount_);