debugger: give access to the section names in a shared object

Via context menu in the modules view, gdb-only for now.

Change-Id: I1163540cd9894c52243bb1bf0c2afc881e793863
Reviewed-by: hjk <qthjk@ovi.com>
This commit is contained in:
hjk
2012-11-07 18:31:17 +01:00
parent 6c6400b7b8
commit 6841976aa8
9 changed files with 119 additions and 4 deletions

View File

@@ -66,6 +66,24 @@ public:
typedef QVector<Symbol> Symbols;
//////////////////////////////////////////////////////////////////
//
// Section
//
//////////////////////////////////////////////////////////////////
class Section
{
public:
QString from;
QString to;
QString address;
QString name;
QString flags;
};
typedef QVector<Section> Sections;
//////////////////////////////////////////////////////////////////
//
// Module