diff options
| author | Greg Clayton <gclayton@apple.com> | 2016-06-24 23:40:35 +0000 |
|---|---|---|
| committer | Greg Clayton <gclayton@apple.com> | 2016-06-24 23:40:35 +0000 |
| commit | 4d32eb6939d77f8059683c008bb807167110e930 (patch) | |
| tree | 4ce25b64edc8b5a7332255196e30e8fb20502cf5 /lldb/scripts/interface/SBProcess.i | |
| parent | dd9e03ed874b2280af95c04fe7b0d383ead3261f (diff) | |
| download | bcm5719-llvm-4d32eb6939d77f8059683c008bb807167110e930.tar.gz bcm5719-llvm-4d32eb6939d77f8059683c008bb807167110e930.zip | |
Add .i files for SBMemoryRegionInfo and SBMemoryRegionInfoList and also hook up the new calls in SBProcess that give out SBMemoryRegionInfo and SBMemoryRegionInfoList objects.
Also make sure the right headers and .i files are included so SWIG can hook everything up.
llvm-svn: 273749
Diffstat (limited to 'lldb/scripts/interface/SBProcess.i')
| -rw-r--r-- | lldb/scripts/interface/SBProcess.i | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/lldb/scripts/interface/SBProcess.i b/lldb/scripts/interface/SBProcess.i index 0ce45f7d7be..2ed3e99c90b 100644 --- a/lldb/scripts/interface/SBProcess.i +++ b/lldb/scripts/interface/SBProcess.i @@ -401,6 +401,12 @@ public: lldb::SBError SaveCore(const char *file_name); + lldb::SBError + GetMemoryRegionInfo(lldb::addr_t load_addr, lldb::SBMemoryRegionInfo ®ion_info); + + lldb::SBMemoryRegionInfoList + GetMemoryRegions(); + %pythoncode %{ def __get_is_alive__(self): '''Returns "True" if the process is currently alive, "False" otherwise''' |

