diff options
author | Jim Ingham <jingham@apple.com> | 2012-02-16 06:50:00 +0000 |
---|---|---|
committer | Jim Ingham <jingham@apple.com> | 2012-02-16 06:50:00 +0000 |
commit | 4bddaeb5ab64cae450fafb419553d34d242fb512 (patch) | |
tree | 64cd496a3b9cc1b50b9d5e3c82b3d150f5c00786 /lldb/source/API/SBTarget.cpp | |
parent | 924f9a671d8a9e6156ea4519ad9f1ce36c708978 (diff) | |
download | bcm5719-llvm-4bddaeb5ab64cae450fafb419553d34d242fb512.tar.gz bcm5719-llvm-4bddaeb5ab64cae450fafb419553d34d242fb512.zip |
Add a general mechanism to wait on the debugger for Broadcasters of a given class/event bit set.
Use this to allow the lldb Driver to emit notifications for breakpoint modifications.
<rdar://problem/10619974>
llvm-svn: 150665
Diffstat (limited to 'lldb/source/API/SBTarget.cpp')
-rw-r--r-- | lldb/source/API/SBTarget.cpp | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/lldb/source/API/SBTarget.cpp b/lldb/source/API/SBTarget.cpp index 687c44e01f2..7fdfb347429 100644 --- a/lldb/source/API/SBTarget.cpp +++ b/lldb/source/API/SBTarget.cpp @@ -87,6 +87,12 @@ SBTarget::~SBTarget() { } +const char * +SBTarget::GetBroadcasterClassName () +{ + return Target::GetStaticBroadcasterClass().AsCString(); +} + bool SBTarget::IsValid () const { @@ -1235,7 +1241,6 @@ SBTarget::GetBroadcaster () const return broadcaster; } - bool SBTarget::GetDescription (SBStream &description, lldb::DescriptionLevel description_level) { |