diff options
author | Daniel Malea <daniel.malea@intel.com> | 2013-10-03 22:21:09 +0000 |
---|---|---|
committer | Daniel Malea <daniel.malea@intel.com> | 2013-10-03 22:21:09 +0000 |
commit | 54e14615e797d8cbd62fc27ba24a54de76bb380a (patch) | |
tree | 229d9095bd1afa29a1d703c35de750b0b74f9c40 /lldb/scripts/Python | |
parent | c250824772d3bd1d99baaa382eb1c337b4868b32 (diff) | |
download | bcm5719-llvm-54e14615e797d8cbd62fc27ba24a54de76bb380a.tar.gz bcm5719-llvm-54e14615e797d8cbd62fc27ba24a54de76bb380a.zip |
Add missing GetBroadcasterClassName and event types enum to SBThread.i
llvm-svn: 191933
Diffstat (limited to 'lldb/scripts/Python')
-rw-r--r-- | lldb/scripts/Python/interface/SBThread.i | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/lldb/scripts/Python/interface/SBThread.i b/lldb/scripts/Python/interface/SBThread.i index 783b8ccb261..484000496a9 100644 --- a/lldb/scripts/Python/interface/SBThread.i +++ b/lldb/scripts/Python/interface/SBThread.i @@ -41,11 +41,27 @@ See also SBProcess and SBFrame." class SBThread { public: + //------------------------------------------------------------------ + // Broadcaster bits. + //------------------------------------------------------------------ + enum + { + eBroadcastBitStackChanged = (1 << 0), + eBroadcastBitThreadSuspended = (1 << 1), + eBroadcastBitThreadResumed = (1 << 2), + eBroadcastBitSelectedFrameChanged = (1 << 3), + eBroadcastBitThreadSelected = (1 << 4) + }; + + SBThread (); SBThread (const lldb::SBThread &thread); ~SBThread(); + + static const char * + GetBroadcasterClassName (); static bool EventIsThreadEvent (const SBEvent &event); |