[Lldb-commits] [lldb] [lldb] add software watchpoints support (PR #151195)

via lldb-commits lldb-commits at lists.llvm.org
Tue Jul 29 12:52:04 PDT 2025


================
@@ -356,7 +356,7 @@ class LLDB_API SBValue {
   ///     return due to a value not being contained in memory, too
   ///     large, or watchpoint resources are not available or all in
   ///     use.
-  lldb::SBWatchpoint Watch(bool resolve_location, bool read, bool write,
+  lldb::SBWatchpoint Watch(bool resolve_location, SBWatchpointOptions options,
----------------
jimingham wrote:

You can't change extant SB API's - we maintain strict binary compatibility.  You'll have to add these as overloads.

https://github.com/llvm/llvm-project/pull/151195


More information about the lldb-commits mailing list