summaryrefslogtreecommitdiff
path: root/src/core/core.cpp
diff options
context:
space:
mode:
authorGravatar Morph2022-06-13 14:38:37 -0400
committerGravatar GitHub2022-06-13 14:38:37 -0400
commita0407a8e646172392514dd996d62464db64aee83 (patch)
treeb13a559bcb4a9f9641730d58285a56bde6d5cc80 /src/core/core.cpp
parentMerge pull request #8454 from liamwhite/inaddr-any (diff)
parentyuzu-cmd: ignore bogus timeous from SDL (diff)
downloadyuzu-a0407a8e646172392514dd996d62464db64aee83.tar.gz
yuzu-a0407a8e646172392514dd996d62464db64aee83.tar.xz
yuzu-a0407a8e646172392514dd996d62464db64aee83.zip
Merge pull request #8446 from liamwhite/cmd-gdb
core/debugger: support operation in yuzu-cmd
Diffstat (limited to 'src/core/core.cpp')
-rw-r--r--src/core/core.cpp6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/core/core.cpp b/src/core/core.cpp
index 7d974ba65..954136adb 100644
--- a/src/core/core.cpp
+++ b/src/core/core.cpp
@@ -493,6 +493,12 @@ void System::Shutdown() {
493 impl->Shutdown(); 493 impl->Shutdown();
494} 494}
495 495
496void System::DetachDebugger() {
497 if (impl->debugger) {
498 impl->debugger->NotifyShutdown();
499 }
500}
501
496std::unique_lock<std::mutex> System::StallCPU() { 502std::unique_lock<std::mutex> System::StallCPU() {
497 return impl->StallCPU(); 503 return impl->StallCPU();
498} 504}