summaryrefslogtreecommitdiff
path: root/src/threads/tss_set.c
blob: 17e8187aaec6578f03d83c674cac072b5a7ec083 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#if 0

#include <threads.h>
#include <pthread.h>

int tss_set(tss_t key, void *val)
{
	return pthread_setspecific(key, val) == 0 ? thrd_success : thrd_error;
}

/*
STDC(201112)
*/


#endif