pthread_arch.h 191 B

12345678910
  1. static inline struct pthread *__pthread_self()
  2. {
  3. struct pthread *self;
  4. __asm__ __volatile__ ("ori %0, r21, 0" : "=r" (self) );
  5. return self;
  6. }
  7. #define TP_ADJ(p) (p)
  8. #define MC_PC regs.pc