pthread_arch.h 441 B

1234567891011121314151617
  1. static inline struct pthread *__pthread_self()
  2. {
  3. register char *tp __asm__("r13");
  4. __asm__ __volatile__ ("" : "=r" (tp) );
  5. return (pthread_t)(tp - 0x7000 - sizeof(struct pthread));
  6. }
  7. #define TLS_ABOVE_TP
  8. #define TP_ADJ(p) ((char *)(p) + sizeof(struct pthread) + 0x7000)
  9. #define DTP_OFFSET 0x8000
  10. // the kernel calls the ip "nip", it's the first saved value after the 32
  11. // GPRs.
  12. #define MC_PC gp_regs[32]
  13. #define CANARY canary_at_end