Searched refs:stop_tid (Results 1 - 2 of 2) sorted by relevance

/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Process/FreeBSD/
H A DProcessFreeBSD.h149 /// The \p stop_tid parameter indicates the thread which the stop happened
151 bool AddThreadForInitialStopIfNeeded(lldb::tid_t stop_tid);
153 bool WaitingForInitialStop(lldb::tid_t stop_tid);
H A DProcessFreeBSD.cpp515 bool ProcessFreeBSD::AddThreadForInitialStopIfNeeded(lldb::tid_t stop_tid) { argument
517 ThreadStopSet::iterator it = m_seen_initial_stop.find(stop_tid);
519 m_seen_initial_stop.insert(stop_tid);
525 bool ProcessFreeBSD::WaitingForInitialStop(lldb::tid_t stop_tid) { argument
526 return (m_seen_initial_stop.find(stop_tid) == m_seen_initial_stop.end());

Completed in 100 milliseconds