diff options
Diffstat (limited to 'src/threads/tss_get.c')
-rw-r--r-- | src/threads/tss_get.c | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/threads/tss_get.c b/src/threads/tss_get.c new file mode 100644 index 00000000..68484fbe --- /dev/null +++ b/src/threads/tss_get.c @@ -0,0 +1,7 @@ +#include <threads.h> +#include <pthread.h> + +void *tss_get(tss_t key) +{ + return pthread_getspecific(key); +} |