Support vCont with specific threads to resume

(gdb) set scheduler-locking on
(gdb) continue
This commit is contained in:
Duncan Ogilvie 2026-04-09 20:05:30 +02:00
parent 6c21530e43
commit 0a5b92e821
4 changed files with 71 additions and 20 deletions

View file

@ -1,4 +1,4 @@
// SPDX-FileCopyrightText: Copyright 2025 Eden Emulator Project
// SPDX-FileCopyrightText: Copyright 2026 Eden Emulator Project
// SPDX-License-Identifier: GPL-3.0-or-later
// SPDX-FileCopyrightText: Copyright 2022 yuzu Emulator Project
@ -52,6 +52,7 @@ struct GDBStub : public DebuggerFrontend {
std::unique_ptr<GDBStubArch> arch;
std::vector<char> current_command;
std::map<VAddr, u32> replaced_instructions;
std::vector<Kernel::KThread*> vcont_threads;
bool no_ack{};
};