add support for TLS variant I, presently needed for arm and mips
[musl] / arch / x86_64 / pthread_arch.h
index c424493..77c8387 100644 (file)
@@ -1,9 +1,10 @@
 static inline struct pthread *__pthread_self()
 {
        struct pthread *self;
-       __asm__ ("movq %%fs:0,%0" : "=r" (self) );
+       __asm__ __volatile__ ("movq %%fs:0,%0" : "=r" (self) );
        return self;
 }
 
-#define CANCEL_REG_SP 15
+#define TP_ADJ(p) (p)
+
 #define CANCEL_REG_IP 16