cleanup mbstowcs wrapper
[musl] / arch / powerpc / pthread_arch.h
1 static inline struct pthread *__pthread_self()
2 {
3         register char* tp __asm__("r2");
4         return (pthread_t)(tp - 0x7000 - sizeof(struct pthread));
5 }
6                         
7 #define TLS_ABOVE_TP
8 #define TP_ADJ(p) ((char *)(p) + sizeof(struct pthread) + 0x7000)
9
10 // offset of the PC register in mcontext_t, divided by the system wordsize
11 // the kernel calls the ip "nip", it's the first saved value after the 32
12 // GPRs.
13 #define CANCEL_REG_IP 32
14