mirror of
https://github.com/yuzu-emu/yuzu.git
synced 2025-06-12 10:57:57 -05:00
core/debugger: fix a number of shutdown deadlocks
This commit is contained in:
@ -493,6 +493,12 @@ void System::Shutdown() {
|
||||
impl->Shutdown();
|
||||
}
|
||||
|
||||
void System::DetachDebugger() {
|
||||
if (impl->debugger) {
|
||||
impl->debugger->NotifyShutdown();
|
||||
}
|
||||
}
|
||||
|
||||
std::unique_lock<std::mutex> System::StallCPU() {
|
||||
return impl->StallCPU();
|
||||
}
|
||||
|
Reference in New Issue
Block a user