pthread_arch.h 196 B

123456789
  1. static inline struct pthread *__pthread_self()
  2. {
  3. struct pthread *self;
  4. __asm__ __volatile__ ("movq %%fs:0,%0" : "=r" (self) );
  5. return self;
  6. }
  7. #define CANCEL_REG_SP 15
  8. #define CANCEL_REG_IP 16