1
0
mirror of https://git.suyu.dev/suyu/suyu synced 2025-01-16 04:40:12 -06:00

Merge pull request #4832 from bunnei/cpu-manager-microprofile-fix

core: cpu_manager: Add missing call to MicroProfileOnThreadExit().
This commit is contained in:
bunnei 2020-10-26 21:29:09 -07:00 committed by GitHub
commit c7f32931ee
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -365,6 +365,8 @@ void CpuManager::RunThread(std::size_t core) {
data.enter_barrier.reset();
data.exit_barrier.reset();
data.initialized = false;
MicroProfileOnThreadExit();
}
} // namespace Core