pthread线程创建注意事项
摘要:
pthread的线程管理函数其实比较简单, 跟windows的_beginthreadex差不多. 只是要注意线程结束后的资源释放. 创建线程后, 如果要阻塞等到线程完成, 用pthread_join. 如果不阻塞, 就在线程函数中, 用pthread_detach pthread_join具有和pthread_detach同样的作用, 释放线程占用的资源. 阅读全文
posted @ 2013-02-20 10:48 CrunchYou 阅读(330) 评论(0) 推荐(0) 编辑