[Lldb-commits] [lldb] [lldb][docs] Fix some formatting in the packets doc (PR #209440)
David Spickett via lldb-commits
lldb-commits at lists.llvm.org
Tue Jul 14 04:05:34 PDT 2026
https://github.com/DavidSpickett created https://github.com/llvm/llvm-project/pull/209440
None
>From 8caa4e51bead6cdbc8f05d8196918fc09829087f Mon Sep 17 00:00:00 2001
From: David Spickett <david.spickett at arm.com>
Date: Tue, 14 Jul 2026 10:56:48 +0000
Subject: [PATCH] [lldb][docs] Fix some formatting in the packets doc
---
lldb/docs/resources/lldbgdbremote.md | 25 +++++++++++--------------
1 file changed, 11 insertions(+), 14 deletions(-)
diff --git a/lldb/docs/resources/lldbgdbremote.md b/lldb/docs/resources/lldbgdbremote.md
index d4a377b048c61..e487261ea4a54 100644
--- a/lldb/docs/resources/lldbgdbremote.md
+++ b/lldb/docs/resources/lldbgdbremote.md
@@ -646,19 +646,16 @@ $jMultiBreakpoint:{"breakpoint_requests" : ["request"[,"request"]*]}
```
Where each `request` is one of:
-
-```
-* z0,addr,kind
-* z1,addr,kind
-* z2,addr,kind
-* z3,addr,kind
-* z4,addr,kind
-* Z0,addr,kind[;cond_list…][;cmds:persist,cmd_list…]
-* Z1,addr,kind[;cond_list…][;cmds:persist,cmd_list…]
-* Z2,addr,kind
-* Z3,addr,kind
-* Z4,addr,kind
-```
+* `z0,addr,kind`
+* `z1,addr,kind`
+* `z2,addr,kind`
+* `z3,addr,kind`
+* `z4,addr,kind`
+* `Z0,addr,kind[;cond_list…][;cmds:persist,cmd_list…]`
+* `Z1,addr,kind[;cond_list…][;cmds:persist,cmd_list…]`
+* `Z2,addr,kind`
+* `Z3,addr,kind`
+* `Z4,addr,kind`
Each field has the same meaning as the corresponding packet in the GDB Remote
Protocol.
@@ -825,7 +822,7 @@ This is a performance optimization, which speeds up debugging by avoiding
multiple round-trips for retrieving thread information. The information from this
packet can be retrieved using a combination of `qThreadStopInfo` and `m` packets.
-### MultiMemRead
+## MultiMemRead
Read memory from multiple memory ranges.
More information about the lldb-commits
mailing list