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