summaryrefslogtreecommitdiff
path: root/arch/i386/pthread_arch.h
blob: a639c382ac2af5b351adfb2f728264e7ea4f932d (plain) (blame)
1
2
3
4
5
6
7
8
static inline uintptr_t __get_tp()
{
	uintptr_t tp;
	__asm__ ("movl %%gs:0,%0" : "=r" (tp) );
	return tp;
}

#define MC_PC gregs[REG_EIP]