summaryrefslogtreecommitdiff
path: root/src/threads/tss_get.c
blob: 68484fbe6c71bb11b313263cfe8f732b7de488e0 (plain)
1
2
3
4
5
6
7
#include <threads.h>
#include <pthread.h>

void *tss_get(tss_t key)
{
	return pthread_getspecific(key);
}