MCPcopy Create free account
hub / github.com/NazaraEngine/NazaraEngine / Join

Method Join

src/Nazara/Core/Thread.cpp:92–105  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

90 */
91
92 void Thread::Join()
93 {
94 #if NAZARA_CORE_SAFE
95 if (!m_impl)
96 {
97 NazaraError("This thread is not joinable");
98 return;
99 }
100 #endif
101
102 m_impl->Join();
103 delete m_impl;
104 m_impl = nullptr;
105 }
106
107 /*!
108 * \brief Changes the debugging name associated to a thread

Callers 4

StopThreadMethod · 0.45
DestroyMethod · 0.45
DestroyMethod · 0.45
~ThreadMethod · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected