[Lldb-commits] [lldb] [lldb] Simplify macOS thread name fetching. (PR #111684)
Jonas Devlieghere via lldb-commits
lldb-commits at lists.llvm.org
Wed Oct 9 09:33:59 PDT 2024
================
@@ -126,6 +127,8 @@ class MachThread {
protected:
static bool GetBasicInfo(thread_t threadID,
struct thread_basic_info *basic_info);
+ static bool GetExtendedInfo(thread_t threadID,
+ struct thread_extended_info *extended_info);
bool GetIdentifierInfo();
----------------
JDevlieghere wrote:
`MachThread::GetIdentifierInfo` is now gone, right?
https://github.com/llvm/llvm-project/pull/111684
More information about the lldb-commits
mailing list