pthread_arch.h 441 B

1234567891011121314
  1. static inline struct pthread *__pthread_self()
  2. {
  3. register char* tp __asm__("r2");
  4. return (pthread_t)(tp - 0x7000 - sizeof(struct pthread));
  5. }
  6. #define TLS_ABOVE_TP
  7. #define TP_ADJ(p) ((char *)(p) + sizeof(struct pthread) + 0x7000)
  8. // offset of the PC register in mcontext_t, divided by the system wordsize
  9. // the kernel calls the ip "nip", it's the first saved value after the 32
  10. // GPRs.
  11. #define CANCEL_REG_IP 32