[Lldb-commits] [lldb] [lldb] Unify/improve MainLoop signal handling (PR #115197)
Jacob Lalonde via lldb-commits
lldb-commits at lists.llvm.org
Thu Nov 14 11:02:48 PST 2024
================
@@ -384,6 +313,21 @@ void MainLoopPosix::ProcessReadObject(IOObject::WaitableHandle handle) {
it->second(*this); // Do the work
}
+void MainLoopPosix::ProcessSignals() {
+ std::vector<int> signals;
----------------
Jlalond wrote:
(Uneducated question) Is int actually the correct type for signals, and not an unsigned value?
https://github.com/llvm/llvm-project/pull/115197
More information about the lldb-commits
mailing list