summaryrefslogtreecommitdiff
path: root/src/thread/pthread_key_create.c
blob: efc3804647422a08d6e381860bd5c2d7da19879a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
#include "pthread_impl.h"

const size_t __pthread_tsd_size = sizeof(void *) * PTHREAD_KEYS_MAX;

static void nodtor(void *dummy)
{
}

int pthread_key_create(pthread_key_t *k, void (*dtor)(void *))
{
	static void (*keys[PTHREAD_KEYS_MAX])(void *);
	int i = (uintptr_t)&k / 16 % PTHREAD_KEYS_MAX;
	int j = i;

	libc.tsd_keys = keys;
	if (!dtor) dtor = nodtor;
	/* Cheap trick - &k cannot match any destructor pointer */
	while (a_cas_p(keys+j, 0, &k)
		&& (j=(j+1)%PTHREAD_KEYS_MAX) != i);
	if (keys[j] != (void (*)(void *))&k)
		return EAGAIN;
	keys[j] = dtor;
	*k = j;
	return 0;
}