[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Qemu-devel] [PATCH v8 24/27] gdbstub: Add another handler for setting q
From: |
Jon Doron |
Subject: |
[Qemu-devel] [PATCH v8 24/27] gdbstub: Add another handler for setting qemu.sstep |
Date: |
Thu, 2 May 2019 10:26:38 +0300 |
Follow GDB general query/set packet conventions, qemu.sstep can now
be set with the following command as well:
gdb> maint packet Qqemu.sstep:Value
Signed-off-by: Jon Doron <address@hidden>
---
gdbstub.c | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/gdbstub.c b/gdbstub.c
index 6daf779af4..bceceeec57 100644
--- a/gdbstub.c
+++ b/gdbstub.c
@@ -2260,6 +2260,12 @@ static GdbCmdParseEntry gdb_gen_set_table[] = {
.cmd_startswith = 1,
.schema = "l0"
},
+ {
+ .handler = handle_set_qemu_sstep,
+ .cmd = "qemu.sstep:",
+ .cmd_startswith = 1,
+ .schema = "l0"
+ },
};
static void handle_gen_query(GdbCmdContext *gdb_ctx, void *user_ctx)
--
2.20.1
- [Qemu-devel] [PATCH v8 10/27] gdbstub: Implement get register (p pkt) with new infra, (continued)
- [Qemu-devel] [PATCH v8 10/27] gdbstub: Implement get register (p pkt) with new infra, Jon Doron, 2019/05/02
- [Qemu-devel] [PATCH v8 13/27] gdbstub: Implement write all registers (G pkt) with new infra, Jon Doron, 2019/05/02
- [Qemu-devel] [PATCH v8 27/27] gdbstub: Add support to write a MSR for KVM target, Jon Doron, 2019/05/02
- [Qemu-devel] [PATCH v8 16/27] gdbstub: Implement step (s pkt) with new infra, Jon Doron, 2019/05/02
- [Qemu-devel] [PATCH v8 09/27] gdbstub: Implement set register (P pkt) with new infra, Jon Doron, 2019/05/02
- [Qemu-devel] [PATCH v8 05/27] gdbstub: Implement continue with signal (C pkt) with new infra, Jon Doron, 2019/05/02
- [Qemu-devel] [PATCH v8 17/27] gdbstub: Implement v commands with new infra, Jon Doron, 2019/05/02
- [Qemu-devel] [PATCH v8 25/27] kvm: Add API to read/write a CPU MSR value, Jon Doron, 2019/05/02
- [Qemu-devel] [PATCH v8 06/27] gdbstub: Implement set_thread (H pkt) with new infra, Jon Doron, 2019/05/02
- [Qemu-devel] [PATCH v8 07/27] gdbstub: Implement insert breakpoint (Z pkt) with new infra, Jon Doron, 2019/05/02
- [Qemu-devel] [PATCH v8 24/27] gdbstub: Add another handler for setting qemu.sstep,
Jon Doron <=
- [Qemu-devel] [PATCH v8 23/27] gdbstub: Implement qemu physical memory mode, Jon Doron, 2019/05/02
- [Qemu-devel] [PATCH v8 21/27] gdbstub: Clear unused variables in gdb_handle_packet, Jon Doron, 2019/05/02
- [Qemu-devel] [PATCH v8 11/27] gdbstub: Implement write memory (M pkt) with new infra, Jon Doron, 2019/05/02
- [Qemu-devel] [PATCH v8 20/27] gdbstub: Implement target halted (? pkt) with new infra, Jon Doron, 2019/05/02
- [Qemu-devel] [PATCH v8 15/27] gdbstub: Implement file io (F pkt) with new infra, Jon Doron, 2019/05/02
- [Qemu-devel] [PATCH v8 08/27] gdbstub: Implement remove breakpoint (z pkt) with new infra, Jon Doron, 2019/05/02
- [Qemu-devel] [PATCH v8 19/27] gdbstub: Implement generic set (Q pkt) with new infra, Jon Doron, 2019/05/02
- [Qemu-devel] [PATCH v8 22/27] gdbstub: Implement generic query qemu.Supported, Jon Doron, 2019/05/02
- [Qemu-devel] [PATCH v8 14/27] gdbstub: Implement read all registers (g pkt) with new infra, Jon Doron, 2019/05/02
- [Qemu-devel] [PATCH v8 18/27] gdbstub: Implement generic query (q pkt) with new infra, Jon Doron, 2019/05/02