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
|
@ -46,12 +46,6 @@
|
|||
|
||||
#include "internals.h"
|
||||
|
||||
#ifdef CONFIG_USER_ONLY
|
||||
#define GDB_ATTACHED "0"
|
||||
#else
|
||||
#define GDB_ATTACHED "1"
|
||||
#endif
|
||||
|
||||
#ifndef CONFIG_USER_ONLY
|
||||
static int phy_memory_mode;
|
||||
#endif
|
||||
|
@ -1673,11 +1667,6 @@ static void handle_query_xfer_features(GArray *params, void *user_ctx)
|
|||
gdbserver_state.str_buf->len, true);
|
||||
}
|
||||
|
||||
static void handle_query_attached(GArray *params, void *user_ctx)
|
||||
{
|
||||
gdb_put_packet(GDB_ATTACHED);
|
||||
}
|
||||
|
||||
static void handle_query_qemu_supported(GArray *params, void *user_ctx)
|
||||
{
|
||||
g_string_printf(gdbserver_state.str_buf, "sstepbits;sstep");
|
||||
|
@ -1787,12 +1776,12 @@ static const GdbCmdParseEntry gdb_gen_query_table[] = {
|
|||
},
|
||||
#endif
|
||||
{
|
||||
.handler = handle_query_attached,
|
||||
.handler = gdb_handle_query_attached,
|
||||
.cmd = "Attached:",
|
||||
.cmd_startswith = 1
|
||||
},
|
||||
{
|
||||
.handler = handle_query_attached,
|
||||
.handler = gdb_handle_query_attached,
|
||||
.cmd = "Attached",
|
||||
},
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue