deduplicate __pthread_self thread pointer adjustment out of each arch
[musl.git] / arch / sh / pthread_arch.h
blob0fcf70d279c2af62e314c86245add2e987431c06
1 static inline uintptr_t __get_tp()
3 uintptr_t tp;
4 __asm__ ("stc gbr,%0" : "=r" (tp) );
5 return tp;
8 #define TLS_ABOVE_TP
9 #define GAP_ABOVE_TP 8
11 #define MC_PC sc_pc
13 #ifdef __FDPIC__
14 #define MC_GOT sc_regs[12]
15 #define CANCEL_GOT (*(uintptr_t *)((char *)__syscall_cp_asm+sizeof(uintptr_t)))
16 #endif