Add documentation for SBTarget::CreateValueFromAddress.

llvm-svn: 254763
This commit is contained in:
Jim Ingham 2015-12-04 20:16:51 +00:00
parent 26935d9a09
commit 9d27f1b0b2
1 changed files with 18 additions and 0 deletions

View File

@ -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);