mirror of
https://github.com/mii443/qemu.git
synced 2025-08-22 23:25:48 +00: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:
@ -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;
|
||||
|
Reference in New Issue
Block a user