Home
last modified time | relevance | path

Searched refs:m_io_handler_thread (Results 1 – 2 of 2) sorted by relevance

/freebsd-14.2/contrib/llvm-project/lldb/source/Core/
H A DDebugger.cpp2096 return m_io_handler_thread.IsJoinable(); in HasIOHandlerThread()
2100 HostThread old_host = m_io_handler_thread; in SetIOHandlerThread()
2101 m_io_handler_thread = new_thread; in SetIOHandlerThread()
2106 if (!m_io_handler_thread.IsJoinable()) { in StartIOHandlerThread()
2111 m_io_handler_thread = *io_handler_thread; in StartIOHandlerThread()
2117 return m_io_handler_thread.IsJoinable(); in StartIOHandlerThread()
2121 if (m_io_handler_thread.IsJoinable()) { in StopIOHandlerThread()
2123 m_io_handler_thread.Join(nullptr); in StopIOHandlerThread()
2130 m_io_handler_thread.Join(&result); in JoinIOHandlerThread()
2131 m_io_handler_thread = LLDB_INVALID_HOST_THREAD; in JoinIOHandlerThread()
[all …]
/freebsd-14.2/contrib/llvm-project/lldb/include/lldb/Core/
H A DDebugger.h723 HostThread m_io_handler_thread; variable