[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Qemu-devel] [PATCH v11 03/20] gdbstub: Implement thread_alive (T pkt) w
From: |
Jon Doron |
Subject: |
[Qemu-devel] [PATCH v11 03/20] gdbstub: Implement thread_alive (T pkt) with new infra |
Date: |
Fri, 24 May 2019 19:01:01 +0300 |
Signed-off-by: Jon Doron <address@hidden>
Reviewed-by: Alex Bennée <address@hidden>
---
gdbstub.c | 43 ++++++++++++++++++++++++++++++++-----------
1 file changed, 32 insertions(+), 11 deletions(-)
diff --git a/gdbstub.c b/gdbstub.c
index 307366b250..b4c4bd4b08 100644
--- a/gdbstub.c
+++ b/gdbstub.c
@@ -1493,6 +1493,30 @@ static void handle_detach(GdbCmdContext *gdb_ctx, void
*user_ctx)
put_packet(s, "OK");
}
+static void handle_thread_alive(GdbCmdContext *gdb_ctx, void *user_ctx)
+{
+ CPUState *cpu;
+
+ if (!gdb_ctx->num_params) {
+ put_packet(gdb_ctx->s, "E22");
+ return;
+ }
+
+ if (gdb_ctx->params[0].thread_id.kind == GDB_READ_THREAD_ERR) {
+ put_packet(gdb_ctx->s, "E22");
+ return;
+ }
+
+ cpu = gdb_get_cpu(gdb_ctx->s, gdb_ctx->params[0].thread_id.pid,
+ gdb_ctx->params[0].thread_id.tid);
+ if (!cpu) {
+ put_packet(gdb_ctx->s, "E22");
+ return;
+ }
+
+ put_packet(gdb_ctx->s, "OK");
+}
+
static int gdb_handle_packet(GDBState *s, const char *line_buf)
{
CPUState *cpu;
@@ -1793,17 +1817,14 @@ static int gdb_handle_packet(GDBState *s, const char
*line_buf)
}
break;
case 'T':
- thread_kind = read_thread_id(p, &p, &pid, &tid);
- if (thread_kind == GDB_READ_THREAD_ERR) {
- put_packet(s, "E22");
- break;
- }
- cpu = gdb_get_cpu(s, pid, tid);
-
- if (cpu != NULL) {
- put_packet(s, "OK");
- } else {
- put_packet(s, "E22");
+ {
+ static const GdbCmdParseEntry thread_alive_cmd_desc = {
+ .handler = handle_thread_alive,
+ .cmd = "T",
+ .cmd_startswith = 1,
+ .schema = "t0"
+ };
+ cmd_parser = &thread_alive_cmd_desc;
}
break;
case 'q':
--
2.21.0
- [Qemu-devel] [PATCH v11 00/20] gdbstub: Refactor command packets handler, Jon Doron, 2019/05/24
- [Qemu-devel] [PATCH v11 02/20] gdbstub: Implement deatch (D pkt) with new infra, Jon Doron, 2019/05/24
- [Qemu-devel] [PATCH v11 04/20] gdbstub: Implement continue (c pkt) with new infra, Jon Doron, 2019/05/24
- [Qemu-devel] [PATCH v11 06/20] gdbstub: Implement set_thread (H pkt) with new infra, Jon Doron, 2019/05/24
- [Qemu-devel] [PATCH v11 05/20] gdbstub: Implement continue with signal (C pkt) with new infra, Jon Doron, 2019/05/24
- [Qemu-devel] [PATCH v11 03/20] gdbstub: Implement thread_alive (T pkt) with new infra,
Jon Doron <=
- [Qemu-devel] [PATCH v11 08/20] gdbstub: Implement set register (P pkt) with new infra, Jon Doron, 2019/05/24
- [Qemu-devel] [PATCH v11 07/20] gdbstub: Implement breakpoint commands (Z/z pkt) with new infra, Jon Doron, 2019/05/24
- [Qemu-devel] [PATCH v11 01/20] gdbstub: Add infrastructure to parse cmd packets, Jon Doron, 2019/05/24
- [Qemu-devel] [PATCH v11 09/20] gdbstub: Implement get register (p pkt) with new infra, Jon Doron, 2019/05/24
- [Qemu-devel] [PATCH v11 11/20] gdbstub: Implement read memory (m pkt) with new infra, Jon Doron, 2019/05/24
- [Qemu-devel] [PATCH v11 12/20] gdbstub: Implement write all registers (G pkt) with new infra, Jon Doron, 2019/05/24
- [Qemu-devel] [PATCH v11 13/20] gdbstub: Implement read all registers (g pkt) with new infra, Jon Doron, 2019/05/24
- [Qemu-devel] [PATCH v11 10/20] gdbstub: Implement write memory (M pkt) with new infra, Jon Doron, 2019/05/24
- [Qemu-devel] [PATCH v11 19/20] gdbstub: Clear unused variables in gdb_handle_packet, Jon Doron, 2019/05/24