mirror of
https://github.com/fluencelabs/musl
synced 2025-06-12 14:31:37 +00:00
These all have POSIX equivalents, but aside from tss_get, they all have minor changes to the signature or return value and thus need to exist as separate functions.
12 lines
269 B
C
12 lines
269 B
C
#include "pthread_impl.h"
|
|
#include <threads.h>
|
|
|
|
static void *__pthread_getspecific(pthread_key_t k)
|
|
{
|
|
struct pthread *self = __pthread_self();
|
|
return self->tsd[k];
|
|
}
|
|
|
|
weak_alias(__pthread_getspecific, pthread_getspecific);
|
|
weak_alias(__pthread_getspecific, tss_get);
|