summaryrefslogtreecommitdiff
path: root/arch/x86_64/pthread_arch.h
blob: 40d267979b82ae4296566feacfa77a565d8747d6 (plain) (blame)
1
2
3
4
5
6
static inline struct pthread *__pthread_self()
{
	struct pthread *self;
	__asm__ ("movq %%fs:0,%0" : "=r" (self) );
	return self;
}