af7ae86e2b72f726b81671f120a3cb3d2591add9
[musl] / arch / x86_64 / pthread_arch.h
1 static inline struct pthread *__pthread_self()
2 {
3         struct pthread *self;
4         __asm__ ("movq %%fs:0,%0" : "=r" (self) );
5         return self;
6 }
7
8 #define PC_AT_SYS(c) \
9         (*(uint16_t *)(((ucontext_t *)(c))->uc_mcontext.__gregs[16])==0x050f)