pthread_arch.h 557 B

1234567891011121314151617181920212223
  1. #if __ARM_ARCH_6K__ || __ARM_ARCH_6ZK__ \
  2. || __ARM_ARCH_7A__ || __ARM_ARCH_7R__ \
  3. || __ARM_ARCH >= 7
  4. static inline __attribute__((const)) pthread_t __pthread_self()
  5. {
  6. char *p;
  7. __asm__( "mrc p15,0,%0,c13,c0,3" : "=r"(p) );
  8. return (void *)(p+8-sizeof(struct pthread));
  9. }
  10. #else
  11. typedef char *(*__ptr_func_t)(void) __attribute__((const));
  12. #define __pthread_self() \
  13. ((pthread_t)(((__ptr_func_t)0xffff0fe0)()+8-sizeof(struct pthread)))
  14. #endif
  15. #define TLS_ABOVE_TP
  16. #define TP_ADJ(p) ((char *)(p) + sizeof(struct pthread) - 8)
  17. #define CANCEL_REG_IP 18