CPPマルチスレッド例
343 ワード
#include
typedef void * HANDLER;
void Func(HANDLER & h){
//...
}
int main()
{
HANDLER h = InitModel(strModelPath);
std::thread t1(Func,std::ref(h));
std::thread t2(Func,std::ref(h));
t1.join();
t2.join();
}