Skip to content

Commit 2a96bec

Browse files
authored
[SBProgress][CLI] Configure sbprogress events to be emitted for the CLI (#133309)
In the original SBProgress patch, #123837, I didn't ensure the debugger was broadcasting these events to the CLI as SBProgress has far been focused on DAP. We had an internal ask to have SBProgress events broadcasted to the CLI so this patch addresses that. <img width="387" alt="image" src="https://github.com/user-attachments/assets/5eb93a46-1db6-4d46-a6b7-2b2f9bbe71db" />
1 parent 5c26e80 commit 2a96bec

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

lldb/source/Core/Debugger.cpp

+2-1
Original file line numberDiff line numberDiff line change
@@ -2076,7 +2076,8 @@ lldb::thread_result_t Debugger::DefaultEventHandler() {
20762076
}
20772077
}
20782078
} else if (broadcaster == &m_broadcaster) {
2079-
if (event_type & lldb::eBroadcastBitProgress)
2079+
if (event_type & lldb::eBroadcastBitProgress ||
2080+
event_type & lldb::eBroadcastBitExternalProgress)
20802081
HandleProgressEvent(event_sp);
20812082
else if (event_type & lldb::eBroadcastBitWarning)
20822083
HandleDiagnosticEvent(event_sp);

0 commit comments

Comments
 (0)