deduplicate __pthread_self thread pointer adjustment out of each arch
[musl] / arch / mips64 / pthread_arch.h
index c22eb34..c45347a 100644 (file)
@@ -1,13 +1,13 @@
-static inline struct pthread *__pthread_self()
+static inline uintptr_t __get_tp()
 {
 #if __mips_isa_rev < 2
-       register char *tp __asm__("$3");
+       register uintptr_t tp __asm__("$3");
        __asm__ (".word 0x7c03e83b" : "=r" (tp) );
 #else
-       char *tp;
+       uintptr_t tp;
        __asm__ ("rdhwr %0, $29" : "=r" (tp) );
 #endif
-       return (pthread_t)(tp - 0x7000 - sizeof(struct pthread));
+       return tp;
 }
 
 #define TLS_ABOVE_TP