move msghdr and cmsghdr out of bits/socket.h
[musl] / arch / x86_64 / pthread_arch.h
index 836187f..65e880c 100644 (file)
@@ -1,9 +1,10 @@
 static inline struct pthread *__pthread_self()
 {
        struct pthread *self;
-       __asm__ __volatile__ ("movq %%fs:0,%0" : "=r" (self) );
+       __asm__ ("mov %%fs:0,%0" : "=r" (self) );
        return self;
 }
 
-#define CANCEL_REG_SP 15
-#define CANCEL_REG_IP 16
+#define TP_ADJ(p) (p)
+
+#define MC_PC gregs[REG_RIP]