From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([209.51.188.92]:60105) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1hJeOx-0007er-WD for qemu-devel@nongnu.org; Thu, 25 Apr 2019 09:27:00 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1hJeOx-0008SR-3K for qemu-devel@nongnu.org; Thu, 25 Apr 2019 09:26:59 -0400 Received: from mail-wr1-x443.google.com ([2a00:1450:4864:20::443]:47045) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1hJeOw-0008Q9-TK for qemu-devel@nongnu.org; Thu, 25 Apr 2019 09:26:59 -0400 Received: by mail-wr1-x443.google.com with SMTP id t17so30289054wrw.13 for ; Thu, 25 Apr 2019 06:26:58 -0700 (PDT) From: Jon Doron Date: Thu, 25 Apr 2019 16:26:15 +0300 Message-Id: <20190425132636.31636-1-arilou@gmail.com> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Subject: [Qemu-devel] [PATCH v6 00/21] gdbstub: Refactor command packets handler List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: Jon Doron This patch series refactors the old gdbstub command packets handler with a new infrastructure which should ease extending and adding new and missing gdb command packets. version 4-6 changes: - mostly feedback from Richard Henderson version 3 changes - Split the single patch to many individual patches for easier reviewing version 2 changes - Code convention fixes Jon Doron (21): gdbstub: Add infrastructure to parse cmd packets gdbstub: Implement deatch (D pkt) with new infra gdbstub: Implement thread_alive (T pkt) with new infra gdbstub: Implement continue (c pkt) with new infra gdbstub: Implement continue with signal (C pkt) with new infra gdbstub: Implement set_thread (H pkt) with new infra gdbstub: Implement insert breakpoint (Z pkt) with new infra gdbstub: Implement remove breakpoint (z pkt) with new infra gdbstub: Implement set register (P pkt) with new infra gdbstub: Implement get register (p pkt) with new infra gdbstub: Implement write memory (M pkt) with new infra gdbstub: Implement read memory (m pkt) with new infra gdbstub: Implement write all registers (G pkt) with new infra gdbstub: Implement read all registers (g pkt) with new infra gdbstub: Implement file io (F pkt) with new infra gdbstub: Implement step (s pkt) with new infra gdbstub: Implement v commands with new infra gdbstub: Implement generic query (q pkt) with new infra gdbstub: Implement generic set (Q pkt) with new infra gdbstub: Implement target halted (? pkt) with new infra gdbstub: Clear unused variables in gdb_handle_packet gdbstub.c | 1680 +++++++++++++++++++++++++++++++++++++---------------- 1 file changed, 1194 insertions(+), 486 deletions(-) -- 2.20.1