mirror of
https://github.com/yuzu-emu/yuzu.git
synced 2026-01-25 04:54:10 +01: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