SpiecsEngine
 
Loading...
Searching...
No Matches

◆ Start()

template<typename ... Params>
void Spices::Thread< Params >::Start ( )
inline

Start a thread to execute Thread Function.

Definition at line 400 of file ThreadPoolBasic.h.

401 {
403
404 std::thread t(m_Func, this);
405 t.detach();
406 }
#define SPICES_PROFILE_ZONE
ThreadFunc m_Func
Thread Function.

References Spices::Thread< Params >::m_Func.