[Lldb-commits] [lldb] r339189 - Add documentation for SBTarget::AppendImageSearchPath

Alexander Polyakov via lldb-commits lldb-commits at lists.llvm.org
Tue Aug 7 14:41:59 PDT 2018


Author: apolyakov
Date: Tue Aug  7 14:41:59 2018
New Revision: 339189

URL: http://llvm.org/viewvc/llvm-project?rev=339189&view=rev
Log:
Add documentation for SBTarget::AppendImageSearchPath

Modified:
    lldb/trunk/include/lldb/API/SBTarget.h
    lldb/trunk/scripts/interface/SBTarget.i

Modified: lldb/trunk/include/lldb/API/SBTarget.h
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/include/lldb/API/SBTarget.h?rev=339189&r1=339188&r2=339189&view=diff
==============================================================================
--- lldb/trunk/include/lldb/API/SBTarget.h (original)
+++ lldb/trunk/include/lldb/API/SBTarget.h Tue Aug  7 14:41:59 2018
@@ -272,6 +272,7 @@ public:
 
   lldb::SBFileSpec GetExecutable();
 
+  // Append the path mapping (from -> to) to the target's paths mapping list.
   void AppendImageSearchPath(const char *from, const char *to,
                              lldb::SBError &error);
 

Modified: lldb/trunk/scripts/interface/SBTarget.i
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/scripts/interface/SBTarget.i?rev=339189&r1=339188&r2=339189&view=diff
==============================================================================
--- lldb/trunk/scripts/interface/SBTarget.i (original)
+++ lldb/trunk/scripts/interface/SBTarget.i Tue Aug  7 14:41:59 2018
@@ -373,6 +373,9 @@ public:
     lldb::SBFileSpec
     GetExecutable ();
 
+    %feature("docstring", "
+    /// Append the path mapping (from -> to) to the target's paths mapping list.
+    ") AppendImageSearchPath;
     void
     AppendImageSearchPath (const char *from,
                            const char *to,




More information about the lldb-commits mailing list