diff options
author | Greg Clayton <gclayton@apple.com> | 2012-10-18 22:40:37 +0000 |
---|---|---|
committer | Greg Clayton <gclayton@apple.com> | 2012-10-18 22:40:37 +0000 |
commit | c9d645d30619ffad3e256928cb3d8cdc4c541998 (patch) | |
tree | dcdb3b2a37b27ad64e155f211f9c93b1e5f04d0c /lldb/examples/python/operating_system.py | |
parent | ed8560b09c3fa6f83350aa065b74e31a9d77e469 (diff) | |
download | bcm5719-llvm-c9d645d30619ffad3e256928cb3d8cdc4c541998.tar.gz bcm5719-llvm-c9d645d30619ffad3e256928cb3d8cdc4c541998.zip |
<rdar://problem/12491420>
Added a new setting that allows a python OS plug-in to detect threads and provide registers for memory threads. To enable this you set the setting:
settings set target.process.python-os-plugin-path lldb/examples/python/operating_system.py
Then run your program and see the extra threads.
llvm-svn: 166244
Diffstat (limited to 'lldb/examples/python/operating_system.py')
-rw-r--r-- | lldb/examples/python/operating_system.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/examples/python/operating_system.py b/lldb/examples/python/operating_system.py index 7f79ea835fc..b8bff1bd498 100644 --- a/lldb/examples/python/operating_system.py +++ b/lldb/examples/python/operating_system.py @@ -3,7 +3,7 @@ import lldb import struct -class PlugIn(object): +class OperatingSystemPlugIn(object): """Class that provides data for an instance of a LLDB 'OperatingSystemPython' plug-in class""" def __init__(self, process): |