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

/external/lldb/tools/debugserver/source/MacOSX/
H A DMachTask.h123 pthread_t m_exception_thread; // Thread ID for the exception thread in case we need it member in class:MachTask
H A DMachTask.cpp55 m_exception_thread (0),
141 m_exception_thread = 0;
626 err = ::pthread_create (&m_exception_thread, NULL, MachTask::ExceptionThread, this);
647 err.SetError(::pthread_cancel(m_exception_thread), DNBError::POSIX);
649 err.LogThreaded("::pthread_cancel ( thread = %p )", m_exception_thread);
651 err.SetError(::pthread_join(m_exception_thread, NULL), DNBError::POSIX);
653 err.LogThreaded("::pthread_join ( thread = %p, value_ptr = NULL)", m_exception_thread);

Completed in 266 milliseconds