deduplicate TP_ADJ logic out of each arch, replace with TP_OFFSET
[musl] / arch / riscv64 / pthread_arch.h
1 static inline struct pthread *__pthread_self()
2 {
3         char *tp;
4         __asm__ __volatile__("mv %0, tp" : "=r"(tp));
5         return (void *)(tp - sizeof(struct pthread));
6 }
7
8 #define TLS_ABOVE_TP
9 #define GAP_ABOVE_TP 0
10
11 #define DTP_OFFSET 0x800
12
13 #define MC_PC __gregs[0]