aboutsummaryrefslogtreecommitdiff
path: root/lldb/source/Plugins/OperatingSystem/Python/OperatingSystemPython.h
diff options
context:
space:
mode:
authorGreg Clayton <gclayton@apple.com>2012-10-25 17:56:31 +0000
committerGreg Clayton <gclayton@apple.com>2012-10-25 17:56:31 +0000
commitead45e0174579d47baba4e5a8ab0549ffc448f34 (patch)
tree748d5b83a9613a453d6f6e618131cd9dbcfd5ebd /lldb/source/Plugins/OperatingSystem/Python/OperatingSystemPython.h
parent823e8bb7beff0296ad6b1cb1df76f8cbcbbb175e (diff)
downloadllvm-ead45e0174579d47baba4e5a8ab0549ffc448f34.zip
llvm-ead45e0174579d47baba4e5a8ab0549ffc448f34.tar.gz
llvm-ead45e0174579d47baba4e5a8ab0549ffc448f34.tar.bz2
Allow operating system plug-ins to specify the address for registers so we don't have to create data up front.
llvm-svn: 166701
Diffstat (limited to 'lldb/source/Plugins/OperatingSystem/Python/OperatingSystemPython.h')
-rw-r--r--lldb/source/Plugins/OperatingSystem/Python/OperatingSystemPython.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/lldb/source/Plugins/OperatingSystem/Python/OperatingSystemPython.h b/lldb/source/Plugins/OperatingSystem/Python/OperatingSystemPython.h
index 8dccf24..d89a7ab 100644
--- a/lldb/source/Plugins/OperatingSystem/Python/OperatingSystemPython.h
+++ b/lldb/source/Plugins/OperatingSystem/Python/OperatingSystemPython.h
@@ -72,7 +72,8 @@ public:
ThreadWasSelected (lldb_private::Thread *thread);
virtual lldb::RegisterContextSP
- CreateRegisterContextForThread (lldb_private::Thread *thread);
+ CreateRegisterContextForThread (lldb_private::Thread *thread,
+ lldb::addr_t reg_data_addr);
virtual lldb::StopInfoSP
CreateThreadStopReason (lldb_private::Thread *thread);