[Lldb-commits] [lldb] b1c29d8 - [lldb][docs] Fix some formatting in the packets doc (#209440)
via lldb-commits
lldb-commits at lists.llvm.org
Tue Jul 14 04:06:04 PDT 2026
Author: David Spickett
Date: 2026-07-14T12:06:00+01:00
New Revision: b1c29d83c938183a4fbd706818aa09de7e9eafec
URL: https://github.com/llvm/llvm-project/commit/b1c29d83c938183a4fbd706818aa09de7e9eafec
DIFF: https://github.com/llvm/llvm-project/commit/b1c29d83c938183a4fbd706818aa09de7e9eafec.diff
LOG: [lldb][docs] Fix some formatting in the packets doc (#209440)
Added:
Modified:
lldb/docs/resources/lldbgdbremote.md
Removed:
################################################################################
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