zoukankan      html  css  js  c++  java
  • pthreads之joinable和detach函数

    Joinable and Detached Threads

    http://www.domaigne.com/blog/computing/joinable-and-detached-threads/

    Introduction

    By default, created threads are joinable. That means, we can wait for its completion in any other thread using the function pthread_join():

    #include 
    
    int pthread_join(
        pthread_t thread, // thread to join
        void **value_ptr  // store value returned by thread
    );
    

    This function shall suspend the calling thread until the targeted thread terminates. When value_ptr is non-NULL, then value_ptr shall contain the value
    returned by thread. We saw how to use pthread_join() already in our article Pthreads argument passing.

    Joinable Thread and Consequences

    A thread may have already terminated before we join it. As a result, the Pthreads system must retain some information when a thread is joinable: namely, at least the thread ID and the returned value[1]. Indeed this information is needed for joining the thread.

    Actually, the Pthreads system can retain also other resources associated with the joinable thread, like for instance the thread’s stack. This is perfectly legal from a POSIX standpoint. In fact, pthread_join() guarantees to reclaim whatever storage is associated to the joined thread.

    Detached Threads

    What should I do when my thread doesn’t return anything useful, and I don’t have to wait for its completion? Do I have to call pthread_join() anyway just for clean-up purpose?

    Fortunately, not. Pthreads offers a mechanism to tell the system: I am starting this thread, but I am not interested about joining it. Please perform any clean-up action for me, once the thread has terminated. This operation is called detaching a thread. We can detach a thread as follows:

    • During thread creation using the detachstate thread attribute.
    • From any thread, using pthread_detach().

    Let’s start with the second form, which is the easiest.

    #include 
    
    int pthread_detach(
        pthread_t thread, // thread to detach
    );
    
  • 相关阅读:
    【题解】国家集训队礼物(Lucas定理)
    【题解】佳佳的斐波那契数列(矩阵)
    【题解】Zap(莫比乌斯反演)
    HNOI2019爆零记
    Emacs配置
    【题解】Journeys(线段树优化连边)
    一直没有敢发的NOIP2018游记
    【题解】Digit Tree
    【题解】BZOJ3489 A Hard RMQ problem(主席树套主席树)
    【题解】大括号
  • 原文地址:https://www.cnblogs.com/CreatorKou/p/8552340.html
Copyright © 2011-2022 走看看