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
    );
    
  • 相关阅读:
    使用textarea标签按Enter键后web页面中成换行 vue
    关于json数组对象和对象数组遇到的一些问题
    vue.js实现checkbox的全选和反选
    关于arcgis js 中要素更新的问题
    C# 图片上传问题
    arcgis js 几种拓扑关系详解
    ISS部署网站--HTTP 错误 404.17
    ADODB.Stream在进行文件上传时报错
    window.open 打开Excel或者Word 无权限问题
    Aspose.cell生成表格
  • 原文地址:https://www.cnblogs.com/CreatorKou/p/8552340.html
Copyright © 2011-2022 走看看