summaryrefslogtreecommitdiff
path: root/src/core/core.h
diff options
context:
space:
mode:
authorGravatar Liam2022-06-10 09:17:12 -0400
committerGravatar Liam2022-06-10 09:17:12 -0400
commit1f0fee33edf06bb237a952b78b6e117ba81cbdbb (patch)
tree01ce352e9ffbc07cb2b7dc0fd1e1c4ea50298bee /src/core/core.h
parentcore/debugger: support operation in yuzu-cmd (diff)
downloadyuzu-1f0fee33edf06bb237a952b78b6e117ba81cbdbb.tar.gz
yuzu-1f0fee33edf06bb237a952b78b6e117ba81cbdbb.tar.xz
yuzu-1f0fee33edf06bb237a952b78b6e117ba81cbdbb.zip
core/debugger: fix a number of shutdown deadlocks
Diffstat (limited to 'src/core/core.h')
-rw-r--r--src/core/core.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/core/core.h b/src/core/core.h
index 94477206e..5c367349e 100644
--- a/src/core/core.h
+++ b/src/core/core.h
@@ -160,6 +160,9 @@ public:
160 /// Shutdown the emulated system. 160 /// Shutdown the emulated system.
161 void Shutdown(); 161 void Shutdown();
162 162
163 /// Forcibly detach the debugger if it is running.
164 void DetachDebugger();
165
163 std::unique_lock<std::mutex> StallCPU(); 166 std::unique_lock<std::mutex> StallCPU();
164 void UnstallCPU(); 167 void UnstallCPU();
165 168