summaryrefslogtreecommitdiff
path: root/arch/aarch64/pthread_arch.h
diff options
context:
space:
mode:
Diffstat (limited to 'arch/aarch64/pthread_arch.h')
-rw-r--r--arch/aarch64/pthread_arch.h11
1 files changed, 11 insertions, 0 deletions
diff --git a/arch/aarch64/pthread_arch.h b/arch/aarch64/pthread_arch.h
new file mode 100644
index 00000000..74276f4c
--- /dev/null
+++ b/arch/aarch64/pthread_arch.h
@@ -0,0 +1,11 @@
+static inline struct pthread *__pthread_self()
+{
+ char *self;
+ __asm__ __volatile__ ("mrs %0,tpidr_el0" : "=r"(self));
+ return (void*)(self + 16 - sizeof(struct pthread));
+}
+
+#define TLS_ABOVE_TP
+#define TP_ADJ(p) ((char *)(p) + sizeof(struct pthread) - 16)
+
+#define CANCEL_REG_IP 33