Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
platform
/
external
/
musl
/
79f49effa0a82d88a9bb0b1992ed2e5fa807f900
/
.
/
arch
/
x86_64
/
pthread_arch.h
blob: c61509cf3e37e4c7f839dfdc53e530311018c0e1 [
file
] [
log
] [
blame
]
static
inline
struct
pthread
*
__pthread_self
()
{
struct
pthread
*
self
;
__asm__ __volatile__
(
"mov %%fs:0,%0"
:
"=r"
(
self
)
);
return
self
;
}
#define
TP_ADJ
(
p
)
(
p
)
#define
MC_PC gregs
[
REG_RIP
]