Merge pull request #4832 from bunnei/cpu-manager-microprofile-fix
core: cpu_manager: Add missing call to MicroProfileOnThreadExit().
This commit is contained in:
commit
c7f32931ee
|
@ -365,6 +365,8 @@ void CpuManager::RunThread(std::size_t core) {
|
||||||
data.enter_barrier.reset();
|
data.enter_barrier.reset();
|
||||||
data.exit_barrier.reset();
|
data.exit_barrier.reset();
|
||||||
data.initialized = false;
|
data.initialized = false;
|
||||||
|
|
||||||
|
MicroProfileOnThreadExit();
|
||||||
}
|
}
|
||||||
|
|
||||||
} // namespace Core
|
} // namespace Core
|
||||||
|
|
Reference in New Issue