diff options
| author | Jim Ingham <jingham@apple.com> | 2015-12-04 20:16:51 +0000 |
|---|---|---|
| committer | Jim Ingham <jingham@apple.com> | 2015-12-04 20:16:51 +0000 |
| commit | 9d27f1b0b2a5470f11e69b2e0c70c0f44d350111 (patch) | |
| tree | 29e3d830a9fe98a749668a7eec10a04b7c99e28c /lldb | |
| parent | 26935d9a092a1bcd1c386b5804e66ef9cd900691 (diff) | |
| download | bcm5719-llvm-9d27f1b0b2a5470f11e69b2e0c70c0f44d350111.tar.gz bcm5719-llvm-9d27f1b0b2a5470f11e69b2e0c70c0f44d350111.zip | |
Add documentation for SBTarget::CreateValueFromAddress.
llvm-svn: 254763
Diffstat (limited to 'lldb')
| -rw-r--r-- | lldb/scripts/interface/SBTarget.i | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/lldb/scripts/interface/SBTarget.i b/lldb/scripts/interface/SBTarget.i index f2a51ec2cfa..74e470d4b3f 100644 --- a/lldb/scripts/interface/SBTarget.i +++ b/lldb/scripts/interface/SBTarget.i @@ -695,6 +695,24 @@ public: lldb::SBBroadcaster GetBroadcaster () const; + %feature("docstring", " + //------------------------------------------------------------------ + /// Create an SBValue with the given name by treating the memory starting at addr as an entity of type. + /// + /// @param[in] name + /// The name of the resultant SBValue + /// + /// @param[in] addr + /// The address of the start of the memory region to be used. + /// + /// @param[in] type + /// The type to use to interpret the memory starting at addr. + /// + /// @return + /// An SBValue of the given type, may be invalid if there was an error reading + /// the underlying memory. + //------------------------------------------------------------------ + ") CreateValueFromAddress; lldb::SBValue CreateValueFromAddress (const char *name, lldb::SBAddress addr, lldb::SBType type); |

