pthread_arch.h 227 字节
Newer Older
1 2 3 4 5 6
static inline struct pthread *__pthread_self()
{
	struct pthread *self;
	__asm__ ("movq %%fs:0,%0" : "=r" (self) );
	return self;
}
7 8 9

#define PC_AT_SYS(c) \
	(*(uint16_t *)(((ucontext_t *)(c))->uc_mcontext.__gregs[16])==0x050f)