xref: /aosp_15_r20/external/musl/arch/loongarch64/pthread_arch.h (revision c9945492fdd68bbe62686c5b452b4dc1be3f8453)

__get_tp()1 static inline uintptr_t __get_tp()
2 {
3 	register uintptr_t tp __asm__("tp");
4 	__asm__ ("" : "=r" (tp) );
5 	return tp;
6 }
7 
8 #define TLS_ABOVE_TP
9 #define GAP_ABOVE_TP   0
10 #define DTP_OFFSET     0
11 #define MC_PC          __pc
12