summaryrefslogtreecommitdiffstats
path: root/lldb/source/Core/Debugger.cpp
diff options
context:
space:
mode:
authorJim Ingham <jingham@apple.com>2012-02-16 06:50:00 +0000
committerJim Ingham <jingham@apple.com>2012-02-16 06:50:00 +0000
commit4bddaeb5ab64cae450fafb419553d34d242fb512 (patch)
tree64cd496a3b9cc1b50b9d5e3c82b3d150f5c00786 /lldb/source/Core/Debugger.cpp
parent924f9a671d8a9e6156ea4519ad9f1ce36c708978 (diff)
downloadbcm5719-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/Core/Debugger.cpp')
-rw-r--r--lldb/source/Core/Debugger.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/lldb/source/Core/Debugger.cpp b/lldb/source/Core/Debugger.cpp
index ad6b86f044b..7f768e9ec41 100644
--- a/lldb/source/Core/Debugger.cpp
+++ b/lldb/source/Core/Debugger.cpp
@@ -333,7 +333,7 @@ Debugger::Debugger () :
m_input_file (),
m_output_file (),
m_error_file (),
- m_target_list (),
+ m_target_list (*this),
m_platform_list (),
m_listener ("lldb.Debugger"),
m_source_manager(*this),
@@ -374,6 +374,7 @@ Debugger::Clear()
target_sp->Destroy();
}
}
+ BroadcasterManager::Clear ();
DisconnectInput();
}
OpenPOWER on IntegriCloud