initial check-in, version 0.5.0

This commit is contained in:
Rich Felker
2011-02-12 00:22:29 -05:00
commit 0b44a0315b
1021 changed files with 45711 additions and 0 deletions
+25
View File
@@ -0,0 +1,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;
}