arpa/nameser.h: update RR types list
[musl] / arch / x86_64 / pthread_arch.h
index 40d2679..c8c63f2 100644 (file)
@@ -1,6 +1,8 @@
-static inline struct pthread *__pthread_self()
+static inline uintptr_t __get_tp()
 {
-       struct pthread *self;
-       __asm__ ("movq %%fs:0,%0" : "=r" (self) );
-       return self;
+       uintptr_t tp;
+       __asm__ ("mov %%fs:0,%0" : "=r" (tp) );
+       return tp;
 }
+
+#define MC_PC gregs[REG_RIP]