4

私のプログラムでは、新しいスレッドを

 pthread_t thread;
 pthread_create(&thread, NULL,
            c->someFunction, (void *) fd); //where fd is ID of the thread

質問は非常に簡単です - もし私がちょうど終了させた場合、それを防ぐために何かを呼び出すsomeFunction必要がありますか、それともメモリは自動的に解放されますか??C++joinmemory leaks

4

1 に答える 1