Meg's Mirrors
zig
about
heads
tags
log
tree
search
Search
zig
lib
libc
musl
arch
x86_64
pthread_arch.h
pretty
plain
permalink
blame
history
•
8 lines
•
137 B
1
static inline uintptr_t __get_tp()
2
{
3
	uintptr_t tp;
4
	__asm__ ("mov %%fs:0,%0" : "=r" (tp) );
5
	return tp;
6
}
7
8
#define MC_PC gregs[REG_RIP]