Migrated thread_value_t to INIT/METHOD macros.

This commit is contained in:
Tobias Brunner
2011-10-03 14:57:07 +02:00
parent 71b6235ad8
commit 242f7c857f
+15 -17
View File
@@ -35,27 +35,20 @@ struct private_thread_value_t {
};
/**
* Implementation of thread_value_t.set.
*/
static void set(private_thread_value_t *this, void *val)
METHOD(thread_value_t, set, void,
private_thread_value_t *this, void *val)
{
pthread_setspecific(this->key, val);
}
/**
* Implementation of thread_value_t.get.
*/
static void *get(private_thread_value_t *this)
METHOD(thread_value_t, get, void*,
private_thread_value_t *this)
{
return pthread_getspecific(this->key);
}
/**
* Implementation of thread_value_t.destroy.
*/
static void destroy(private_thread_value_t *this)
METHOD(thread_value_t, destroy, void,
private_thread_value_t *this)
{
pthread_key_delete(this->key);
free(this);
@@ -67,10 +60,15 @@ static void destroy(private_thread_value_t *this)
*/
thread_value_t *thread_value_create(thread_cleanup_t destructor)
{
private_thread_value_t *this = malloc_thing(private_thread_value_t);
this->public.set = (void(*)(thread_value_t*,void*))set;
this->public.get = (void*(*)(thread_value_t*))get;
this->public.destroy = (void(*)(thread_value_t*))destroy;
private_thread_value_t *this;
INIT(this,
.public = {
.set = _set,
.get = _get,
.destroy = _destroy,
},
);
pthread_key_create(&this->key, destructor);
return &this->public;