[Lldb-commits] [PATCH] D153922: [lldb] Duplicate Target::Launch resuming logic into CommandObjectPlatformProcessLaunch
David Spickett via Phabricator via lldb-commits
lldb-commits at lists.llvm.org
Wed Jun 28 01:40:55 PDT 2023
DavidSpickett added inline comments.
================
Comment at: lldb/source/Commands/CommandObjectPlatform.cpp:1232
+
+ assert(launch_info.GetHijackListener());
+
----------------
This assert fails on Linux. Is it necessary or should I look into why it's null here on Linux?
WaitForProcessToStop on down either checks that the pointer is non null before use, or substitutes in another (presumably non-null) hijacker.
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D153922/new/
https://reviews.llvm.org/D153922
More information about the lldb-commits
mailing list