move time64 ioctl numbers to generic bits/ioctl.h
[musl.git] / arch / riscv64 / pthread_arch.h
blobdb414b170281af8f29d9fbbd1d65d1145ad7bd7f
1 static inline struct pthread *__pthread_self()
3 char *tp;
4 __asm__ __volatile__("mv %0, tp" : "=r"(tp));
5 return (void *)(tp - sizeof(struct pthread));
8 #define TLS_ABOVE_TP
9 #define GAP_ABOVE_TP 0
10 #define TP_ADJ(p) ((char *)p + sizeof(struct pthread))
12 #define DTP_OFFSET 0x800
14 #define MC_PC __gregs[0]