pthread_arch.h 306 B

1234567891011121314
  1. static inline struct pthread *__pthread_self()
  2. {
  3. char *tp;
  4. __asm__ __volatile__("mv %0, tp" : "=r"(tp));
  5. return (void *)(tp - sizeof(struct pthread));
  6. }
  7. #define TLS_ABOVE_TP
  8. #define GAP_ABOVE_TP 0
  9. #define TP_ADJ(p) ((char *)p + sizeof(struct pthread))
  10. #define DTP_OFFSET 0x800
  11. #define MC_PC gregs[0]