mq_notify: block all (application) signals in the worker thread
[musl] / arch / powerpc / pthread_arch.h
index 9697046..42e88b0 100644 (file)
@@ -1,8 +1,8 @@
-static inline struct pthread *__pthread_self()
+static inline uintptr_t __get_tp()
 {
-       register char *tp __asm__("r2");
+       register uintptr_t tp __asm__("r2");
        __asm__ ("" : "=r" (tp) );
-       return (pthread_t)(tp - 0x7000 - sizeof(struct pthread));
+       return tp;
 }
                         
 #define TLS_ABOVE_TP
@@ -14,5 +14,3 @@ static inline struct pthread *__pthread_self()
 // the kernel calls the ip "nip", it's the first saved value after the 32
 // GPRs.
 #define MC_PC gregs[32]
-
-#define CANARY canary_at_end