[Lldb-commits] [lldb] [lldb] Implement a statusline in LLDB (PR #121860)

Pavel Labath via lldb-commits lldb-commits at lists.llvm.org
Wed Jan 22 08:02:56 PST 2025


================
@@ -1958,6 +1984,12 @@ lldb::thread_result_t Debugger::DefaultEventHandler() {
   // are now listening to all required events so no events get missed
   m_sync_broadcaster.BroadcastEvent(eBroadcastBitEventThreadIsListening);
 
+  if (!m_statusline && GetShowStatusline())
+    m_statusline.emplace(*this);
----------------
labath wrote:

So, once it's enabled it can no longer be disabled? Could we send some sort of an event when the setting changes?

https://github.com/llvm/llvm-project/pull/121860


More information about the lldb-commits mailing list