summaryrefslogtreecommitdiff
path: root/src/thread/arm/__aeabi_read_tp_c.c
blob: 654bdc577e5b70ea07044b33252e2d8f09aeb22e (plain) (blame)
1
2
3
4
5
6
7
8
#include "pthread_impl.h"
#include <stdint.h>

__attribute__((__visibility__("hidden")))
void *__aeabi_read_tp_c(void)
{
	return (void *)((uintptr_t)__pthread_self()-8+sizeof(struct pthread));
}