mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-02 15:23:53 -06:00
gdbstub: specialise handle_query_attached
In both user and softmmu cases we are just replying with a constant. Reviewed-by: Philippe Mathieu-Daudé <philmd@linaro.org> Reviewed-by: Richard Henderson <richard.henderson@linaro.org> Signed-off-by: Alex Bennée <alex.bennee@linaro.org> Message-Id: <20230302190846.2593720-15-alex.bennee@linaro.org> Message-Id: <20230303025805.625589-15-richard.henderson@linaro.org>
This commit is contained in:
parent
a7e0f9bd2a
commit
8a2025b36b
4 changed files with 15 additions and 14 deletions
|
@ -345,6 +345,11 @@ void gdbserver_fork(CPUState *cpu)
|
|||
* Execution state helpers
|
||||
*/
|
||||
|
||||
void gdb_handle_query_attached(GArray *params, void *user_ctx)
|
||||
{
|
||||
gdb_put_packet("0");
|
||||
}
|
||||
|
||||
void gdb_continue(void)
|
||||
{
|
||||
gdbserver_user_state.running_state = 1;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue