Home | History | Annotate | Download | only in decpp

Lines Matching full:m_thread

38 	: m_thread(0)
51 if (m_thread)
52 deThread_destroy(m_thread);
85 DE_ASSERT(!m_thread);
86 m_thread = deThread_create(threadFunc, this, &m_attribs);
87 if (!m_thread)
102 DE_ASSERT(m_thread);
103 if (!deThread_join(m_thread))
106 deThread_destroy(m_thread);
107 m_thread = 0;