zig/libc/musl/arch/x86_64/pthread_arch.h

11 lines
184 B
C
Raw Normal View History

2019-03-13 01:18:52 +08:00
static inline struct pthread *__pthread_self()
{
struct pthread *self;
__asm__ ("mov %%fs:0,%0" : "=r" (self) );
return self;
}
#define TP_ADJ(p) (p)
#define MC_PC gregs[REG_RIP]