pthread_arch.h 172 B

1234567891011
  1. static inline uintptr_t __get_tp()
  2. {
  3. uintptr_t tp;
  4. __asm__ ("mrs %0,tpidr_el0" : "=r"(tp));
  5. return tp;
  6. }
  7. #define TLS_ABOVE_TP
  8. #define GAP_ABOVE_TP 16
  9. #define MC_PC pc