线程的分离
基礎知識
? 默認情況下,線程被創建成可結合的。為了避免存儲器泄漏,每個可結合線程都應該被顯示回收,即調用pthread_join,或通過調用pthread_detach函數被分離。
? 1)如果一個可結合線程運行結束但沒有被join,則它的狀態類似與僵尸進程。
? 2)若調用pthread_join后,該線程還沒有結束運行,調用者會被阻塞。為了避免此現象,可在子線程中加入代碼
? ?pthread_detach(pthread_self())
或者父線程調用
? ?pthread_detach(thread_id)(非阻塞,可立即返回)
這將該子線程的狀態設置為分離的(detached),如此一來,該線程運行結束后會自動釋放所有資源。
2.代碼實現
??//detach.c1?#include<stdio.h>2?#include<stdlib.h>3?#include<pthread.h>4?5?void*?thread_run(void*?val)6?{7?????pthread_detach(pthread_self());8?????printf("%s\n",(char*)val);9?????return?NULL;10?}11?int?main()12?{13?????pthread_t?tid;14?????int?tret=pthread_create(&tid,NULL,thread_run,"thread_run?run...");15?????if(tret!=0)?16?????{17?????????printf("create?pthread?error!,info?is:%s\n",strerror(tret));18?????????return?tret;19?????}?20?????int?ret;21?????sleep(1);?22?????if(0==pthread_join(tid,NULL))?23?????{24?????????printf("thread?wait?success!\n");25?????????ret=0;26?????}27?????else28?????{29?????????printf("pthread?wait?failed!\n");30?????????ret=1;31?????}32?????return?ret;33?}//makefile1?detach:detach.c2?????gcc?-o?$@?$^?-lpthread3?.PHONY:clean4?clean:5?????rm?-f?detach輸出結果:
轉載于:https://blog.51cto.com/10707460/1765833
總結
- 上一篇: C# winform post请求数据
- 下一篇: Lotus中关于字符串处理的函数汇总