Added a Thread accessor to the register context.

llvm-svn: 111378
This commit is contained in:
Greg Clayton 2010-08-18 18:25:47 +00:00
parent ddfda9d7a2
commit 52d64d9ea9
1 changed files with 6 additions and 0 deletions

View File

@ -100,6 +100,12 @@ public:
lldb::tid_t
GetThreadID() const;
Thread &
GetThread ()
{
return m_thread;
}
const lldb::RegisterInfo *
GetRegisterInfoByName (const char *reg_name, uint32_t start_idx = 0);