X-Git-Url: http://nsz.repo.hu/git/?a=blobdiff_plain;f=arch%2Fx86_64%2Fpthread_arch.h;h=c61509cf3e37e4c7f839dfdc53e530311018c0e1;hb=397f0a6a7d798b0e3f636fe053cad9c483e011fb;hp=40d267979b82ae4296566feacfa77a565d8747d6;hpb=1e12632591ab98a6ea3af8680716c28282552981;p=musl diff --git a/arch/x86_64/pthread_arch.h b/arch/x86_64/pthread_arch.h index 40d26797..c61509cf 100644 --- a/arch/x86_64/pthread_arch.h +++ b/arch/x86_64/pthread_arch.h @@ -1,6 +1,10 @@ static inline struct pthread *__pthread_self() { struct pthread *self; - __asm__ ("movq %%fs:0,%0" : "=r" (self) ); + __asm__ __volatile__ ("mov %%fs:0,%0" : "=r" (self) ); return self; } + +#define TP_ADJ(p) (p) + +#define MC_PC gregs[REG_RIP]