On 7/3/26 09:37, Philippe Mathieu-Daudé wrote:
supported_sstep_flags are per-accelerators. Move them
to a new AccelGdbConfig structure, still in GDBState.
Suggested-by: Alex Bennée <[email protected]>
Signed-off-by: Philippe Mathieu-Daudé <[email protected]>
---
gdbstub/internals.h | 3 ++-
include/qemu/accel.h | 9 +++++++++
gdbstub/gdbstub.c | 10 +++++-----
3 files changed, 16 insertions(+), 6 deletions(-)
Reviewed-by: Richard Henderson <[email protected]>
- if (new_sstep_flags & ~gdbserver_state.supported_sstep_flags) {
+ if (new_sstep_flags & ~gdbserver_state.accel_config.sstep_flags) {
Remove the double space while you're there?
r~