s390x: add single-instruction math functions
[musl.git] / arch / x86_64 / pthread_arch.h
blobc61509cf3e37e4c7f839dfdc53e530311018c0e1
1 static inline struct pthread *__pthread_self()
3 struct pthread *self;
4 __asm__ __volatile__ ("mov %%fs:0,%0" : "=r" (self) );
5 return self;
8 #define TP_ADJ(p) (p)
10 #define MC_PC gregs[REG_RIP]