[Lldb-commits] [lldb] [lldb][docs] Document qWatchpointSupportInfo (PR #145709)
Alex Langford via lldb-commits
lldb-commits at lists.llvm.org
Wed Jun 25 10:43:12 PDT 2025
================
@@ -1998,6 +1998,23 @@ threads (live system debug) / cores (JTAG) in your program have
stopped and allows LLDB to display and control your program
correctly.
+## qWatchpointSupportInfo
+
+Get the number of hardware watchpoints available on the remote target.
+
+```
+send packet: $qWatchpointSupportInfo:#55
+read packet: $num:4;#f9
+```
+
+`num` is the number of hardware breakpoints, it will be `0` if none are
+available.
+
+**Priority to Implement:** Low. If this packet is not supported, LLDB will assume
----------------
bulbazord wrote:
Suggestion: `will assume` -> `may assume`. Although it's unlikely to change, this documentation could become out of date if that behavior does change in the future.
https://github.com/llvm/llvm-project/pull/145709
More information about the lldb-commits
mailing list