aboutsummaryrefslogtreecommitdiff
path: root/src/thread/pthread_setspecific.c
blob: 828802bbccf1ac10e93ce30b28fdf127408ad276 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#include "pthread_impl.h"

int pthread_setspecific(pthread_key_t k, const void *x)
{
	struct pthread *self = __pthread_self();
	/* Avoid unnecessary COW */
	if (self->tsd[k] != x) {
		self->tsd[k] = (void *)x;
		self->tsd_used = 1;
	}
	return 0;
}


#ifdef TEST
int
main(void) {
	return 0;
}
#endif