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