pthread_getspecific.c\thread\src - musl - musl - an implementation of the standard library for Linux-based systems

index : musl
musl - an implementation of the standard library for Linux-based systems
summary refs log tree commit diff
path: root/src/thread/pthread_getspecific.c
blob: d9342a560f7bc6c9341b27911ae353d03a78fb1f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
#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);
generated by cgit v1.2.1 (git 2.18.0) at 2025年09月06日 19:20:43 +0000

AltStyle によって変換されたページ (->オリジナル) /