boostでスレッド作るだけでメモリリーク、並列処理書くのはあきらめた
int main() {
boost::thread_group thread_group;
for (int i = 0; i < 5; i++) {
thread_group.create_thread(f1);
}
thread_group.join_all();
#ifdef _DEBUG
_CrtDumpMemoryLeaks();
#endif
return 0;
Permalink | 記事への反応(0) | 13:34
ツイートシェア