私のプログラムでは、新しいスレッドを
pthread_t thread;
pthread_create(&thread, NULL,
c->someFunction, (void *) fd); //where fd is ID of the thread
質問は非常に簡単です - もし私がちょうど終了させた場合、それを防ぐために何かを呼び出すsomeFunction
必要がありますか、それともメモリは自動的に解放されますか??C++
join
memory leaks