6

我使用 pthread TLS 实现了一种“线程本地单例”,我想知道在这种情况下我如何(以及何时)可以删除 pthread_key_t,因为就像现在一样,TLS 密钥使用的内存永远不会空闲' d。

其预期用途是让类 A 从 ThreadLocalSingleton<A> 派生,这使 A 成为线程本地单例,假设 A 只有私有构造函数并且 ThreadLocalSingleton<A> 是 A 的朋友。

哦,还有 - 你看到那个实现有什么问题吗?我忽略了什么重要的事情吗?

#include <pthread.h>
#include <iostream>

template <class T>
class ThreadLocalSingleton
{
private:
    static pthread_key_t tlsKey;
    static pthread_once_t tlsKey_once;

    static void tls_make_key()
    {
        (void)pthread_key_create(&ThreadLocalSingleton::tlsKey, ThreadLocalSingleton::tls_destructor);
    }

    static void tls_destructor(void* obj)
    {
        delete ((T*)obj);
        pthread_setspecific(tlsKey, NULL); // necessary or it will call the destructor again.
    }

public:

    /*
     * A thread-local singleton getter, the resulted object must never be released,
     * it is auto-released when the thread exits.
     */
    static T* getThreadInstance(void)
    {
        pthread_once(&tlsKey_once, ThreadLocalSingleton::tls_make_key);
        T* instance = (T*)pthread_getspecific(tlsKey);
        if(!instance)
        {
            try
            {
                instance = new T;
                pthread_setspecific(tlsKey, instance);
            }
            catch (const char* ex)
            {
                printf("Exception during thread local singleton init: %s\n",ex);
            }
        }
        return instance;
    }
};
template <class T>
pthread_key_t ThreadLocalSingleton<T>::tlsKey;
template <class T>
pthread_once_t ThreadLocalSingleton<T>::tlsKey_once = PTHREAD_ONCE_INIT;
4

1 回答 1

2

您的实现看起来非常优雅。

根据pthread_key_create 的开放组规范,您不必在析构函数中将引用设置为 NULL:

可选的析构函数可以与每个键值相关联。在线程退出时,如果键值具有非 NULL 析构指针,并且线程具有与该键关联的非 NULL 值,则将键的值设置为 NULL,然后调用指向的函数以前关联的值作为其唯一参数。

我认为这也意味着关键对象本身将被 pthread 自动销毁。您只需要处理存储在密钥后面的内容,这正是您delete ((T*)obj);所做的。

于 2013-08-13T15:03:34.653 回答