about summary refs log tree commit diff
path: root/arch/riscv32/pthread_arch.h
diff options
context:
space:
mode:
Diffstat (limited to 'arch/riscv32/pthread_arch.h')
-rw-r--r--arch/riscv32/pthread_arch.h13
1 files changed, 13 insertions, 0 deletions
diff --git a/arch/riscv32/pthread_arch.h b/arch/riscv32/pthread_arch.h
new file mode 100644
index 00000000..a20d7fba
--- /dev/null
+++ b/arch/riscv32/pthread_arch.h
@@ -0,0 +1,13 @@
+static inline uintptr_t __get_tp()
+{
+	uintptr_t tp;
+	__asm__ __volatile__("mv %0, tp" : "=r"(tp));
+	return tp;
+}
+
+#define TLS_ABOVE_TP
+#define GAP_ABOVE_TP 0
+
+#define DTP_OFFSET 0x800
+
+#define MC_PC __gregs[0]