summaryrefslogtreecommitdiff
path: root/src/core/debugger/gdbstub.cpp
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/debugger/gdbstub.cpp
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/debugger/gdbstub.cpp')
-rw-r--r--src/core/debugger/gdbstub.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/core/debugger/gdbstub.cpp b/src/core/debugger/gdbstub.cpp
index f52d78829..52e76f659 100644
--- a/src/core/debugger/gdbstub.cpp
+++ b/src/core/debugger/gdbstub.cpp
@@ -106,6 +106,8 @@ GDBStub::~GDBStub() = default;
106 106
107void GDBStub::Connected() {} 107void GDBStub::Connected() {}
108 108
109void GDBStub::ShuttingDown() {}
110
109void GDBStub::Stopped(Kernel::KThread* thread) { 111void GDBStub::Stopped(Kernel::KThread* thread) {
110 SendReply(arch->ThreadStatus(thread, GDB_STUB_SIGTRAP)); 112 SendReply(arch->ThreadStatus(thread, GDB_STUB_SIGTRAP));
111} 113}