summaryrefslogtreecommitdiff
path: root/arch/riscv64/pthread_arch.h
diff options
context:
space:
mode:
Diffstat (limited to 'arch/riscv64/pthread_arch.h')
-rw-r--r--arch/riscv64/pthread_arch.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/arch/riscv64/pthread_arch.h b/arch/riscv64/pthread_arch.h
index 50f0868d..a20d7fba 100644
--- a/arch/riscv64/pthread_arch.h
+++ b/arch/riscv64/pthread_arch.h
@@ -1,8 +1,8 @@
-static inline struct pthread *__pthread_self()
+static inline uintptr_t __get_tp()
{
- char *tp;
+ uintptr_t tp;
__asm__ __volatile__("mv %0, tp" : "=r"(tp));
- return (void *)(tp - sizeof(struct pthread));
+ return tp;
}
#define TLS_ABOVE_TP