diff options
author | polaris- <nagatospam@gmail.com> | 2015-10-12 02:07:58 +0200 |
---|---|---|
committer | polaris- <nagatospam@gmail.com> | 2015-10-12 02:07:58 +0200 |
commit | 2b7316a379103edf4d22893e0f4432e6415eabfa (patch) | |
tree | fc4f6cc31b7288689726fbe379755a610a854b7f /src/core/gdbstub | |
parent | Use BreakpointAddress struct instead of passing address directly (diff) | |
download | yuzu-2b7316a379103edf4d22893e0f4432e6415eabfa.tar yuzu-2b7316a379103edf4d22893e0f4432e6415eabfa.tar.gz yuzu-2b7316a379103edf4d22893e0f4432e6415eabfa.tar.bz2 yuzu-2b7316a379103edf4d22893e0f4432e6415eabfa.tar.lz yuzu-2b7316a379103edf4d22893e0f4432e6415eabfa.tar.xz yuzu-2b7316a379103edf4d22893e0f4432e6415eabfa.tar.zst yuzu-2b7316a379103edf4d22893e0f4432e6415eabfa.zip |
Diffstat (limited to 'src/core/gdbstub')
-rw-r--r-- | src/core/gdbstub/gdbstub.cpp | 10 | ||||
-rw-r--r-- | src/core/gdbstub/gdbstub.h | 2 |
2 files changed, 6 insertions, 6 deletions
diff --git a/src/core/gdbstub/gdbstub.cpp b/src/core/gdbstub/gdbstub.cpp index 25ce63b29..15e6f36a0 100644 --- a/src/core/gdbstub/gdbstub.cpp +++ b/src/core/gdbstub/gdbstub.cpp @@ -186,7 +186,7 @@ static u8 ReadByte() { size_t received_size = recv(gdbserver_socket, reinterpret_cast<char*>(&c), 1, MSG_WAITALL); if (received_size != 1) { LOG_ERROR(Debug_GDBStub, "recv failed : %ld", received_size); - Deinit(); + Shutdown(); } return c; @@ -322,7 +322,7 @@ static void SendReply(const char* reply) { int sent_size = send(gdbserver_socket, reinterpret_cast<char*>(ptr), left, 0); if (sent_size < 0) { LOG_ERROR(Debug_GDBStub, "gdb: send failed"); - return Deinit(); + return Shutdown(); } left -= sent_size; @@ -773,7 +773,7 @@ void HandlePacket() { HandleSignal(); break; case 'k': - Deinit(); + Shutdown(); LOG_INFO(Debug_GDBStub, "killed by gdb"); return; case 'g': @@ -829,7 +829,7 @@ void ToggleServer(bool status) { else { // Stop server if (IsConnected()) { - Deinit(); + Shutdown(); } g_server_enabled = status; @@ -908,7 +908,7 @@ void Init() { Init(gdbstub_port); } -void Deinit() { +void Shutdown() { if (!g_server_enabled) { return; } diff --git a/src/core/gdbstub/gdbstub.h b/src/core/gdbstub/gdbstub.h index da238f349..aff705a32 100644 --- a/src/core/gdbstub/gdbstub.h +++ b/src/core/gdbstub/gdbstub.h @@ -44,7 +44,7 @@ void ToggleServer(bool status); void Init(); /// Stop gdbstub server. -void Deinit(); +void Shutdown(); /// Returns true if there is an active socket connection. bool IsConnected(); |