pthread的pthread_join()函數理解實驗

一、使用方式 pthread_t tid; pthread_create(&tid, NULL, thread_run,NULL); pthread_join(tid,NULL); 創建線程之後直接調用pthread_join方法就行了。 二、爲什麼要使用pthread_join()          在很多情況下,主線程生成並起動了子線程,如果子線程裏要進行大量的耗時的運算,主線程往往將於子線程
相關文章
相關標籤/搜索