diff options
author | Michael Sartain <mikesart@valvesoftware.com> | 2013-05-23 20:57:03 +0000 |
---|---|---|
committer | Michael Sartain <mikesart@valvesoftware.com> | 2013-05-23 20:57:03 +0000 |
commit | c836ae7d365fea52f558aaee1a7dbf45f6bb1e77 (patch) | |
tree | af98018aaa075ba60d0dc8e78eebbf9691c9502c /lldb/source/Plugins/ObjectFile/ELF/ELFHeader.h | |
parent | c3ce7f27403c5b404fe854e5c9063fd6a47ce261 (diff) | |
download | bcm5719-llvm-c836ae7d365fea52f558aaee1a7dbf45f6bb1e77.tar.gz bcm5719-llvm-c836ae7d365fea52f558aaee1a7dbf45f6bb1e77.zip |
ObjectFileELF::GetModuleSpecifications on Linux should work now.
Which means "platform process list" should work and list the architecture.
We are now parsing the elf build-id if it exists, which should allow us to load stripped symbols (looking at that next).
llvm-svn: 182610
Diffstat (limited to 'lldb/source/Plugins/ObjectFile/ELF/ELFHeader.h')
-rw-r--r-- | lldb/source/Plugins/ObjectFile/ELF/ELFHeader.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lldb/source/Plugins/ObjectFile/ELF/ELFHeader.h b/lldb/source/Plugins/ObjectFile/ELF/ELFHeader.h index 11ab1dcef44..aa2c16b6168 100644 --- a/lldb/source/Plugins/ObjectFile/ELF/ELFHeader.h +++ b/lldb/source/Plugins/ObjectFile/ELF/ELFHeader.h @@ -107,7 +107,7 @@ struct ELFHeader GetRelocationJumpSlotType() const; //-------------------------------------------------------------------------- - /// Parse an ELFSectionHeader entry starting at position \p offset and + /// Parse an ELFHeader entry starting at position \p offset and /// update the data extractor with the address size and byte order /// attributes as defined by the header. /// @@ -120,7 +120,7 @@ struct ELFHeader /// advanced by the number of bytes read. /// /// @return - /// True if the ELFSectionHeader was successfully read and false + /// True if the ELFHeader was successfully read and false /// otherwise. bool Parse(lldb_private::DataExtractor &data, lldb::offset_t *offset); |