1
0

pthread_arch.h 227 B

123456789
  1. static inline struct pthread *__pthread_self()
  2. {
  3. struct pthread *self;
  4. __asm__ ("movl %%gs:0,%0" : "=r" (self) );
  5. return self;
  6. }
  7. #define PC_AT_SYS(c) \
  8. (*(uint16_t *)(((ucontext_t *)(c))->uc_mcontext.__gregs[14])==0x80cd)