美文网首页linux深入
Pthread创建线程后必须使用join或detach释放线程资

Pthread创建线程后必须使用join或detach释放线程资

作者: superme_ | 来源:发表于2021-04-14 16:14 被阅读0次

    Pthread 资料中,有这么一段话:

    (man pthread_detach):

    Either pthread_join(3) or pthread_detach() should be called for each thread

          that an application creates, so that system resources for the thread can be

          released.  (But note that the resources of all threads are freed when the

          process terminates.)

    也就是说:每个进程创建以后都应该调用pthread_join 或 pthread_detach 函数,只有这样在线程结束的时候资源(线程的描述信息和stack)才能被释放.

            pthread_craete()出来的线程,joinable或detached两者必占之一。如果是jionale的线程,那么必须使用pthread_join()等待线程结束,否则线程所占用的资源不会得到释放,会造成资源泄露。如果想创建一个线程,但又不想使用pthread_join()等待该线程结束,那么可以创建一个detached的线程。detached状态的线程,在结束的时候,会自动释放该线程所占用的资源。

    When a joinable thread terminates, its memory resources (thread descriptor and stack) are not deallocated until another thread performs pthread_join on it. Therefore, pthread_join must be called  once  for each joinable thread created to avoid memory leaks.

    才知道如果在新线程里面没有调用pthread_join 或 pthread_detach会导致内存泄漏, 如果你创建的线程越多,你的内存利用率就会越高, 直到你再无法创建线程,最终只能结束进程。

    解决方法有三个:

    1.   线程里面调用  pthread_detach(pthread_self()) 这个方法最简单

    2 . 在创建线程的设置PTHREAD_CREATE_DETACHED属性

    3. 创建线程后用 pthread_join() 一直等待子线程结束。

    相关文章

      网友评论

        本文标题:Pthread创建线程后必须使用join或detach释放线程资

        本文链接:https://www.haomeiwen.com/subject/ovfllltx.html