[Lldb-commits] [lldb] [lldb] Expose Platform::Attach through the SB API (PR #68050)

Alex Langford via lldb-commits lldb-commits at lists.llvm.org
Mon Oct 2 17:00:04 PDT 2023


================
@@ -574,6 +576,29 @@ SBError SBPlatform::Launch(SBLaunchInfo &launch_info) {
   });
 }
 
+SBProcess SBPlatform::Attach(SBAttachInfo &attach_info,
+                             const SBDebugger &debugger, SBTarget &target,
+                             SBError &error) {
+  LLDB_INSTRUMENT_VA(this, attach_info);
----------------
bulbazord wrote:

This needs to instrument more things than just attach_info, right?

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


More information about the lldb-commits mailing list