1
0
Fork 0
golang-modernc-libc/internal/overlay/musl/arch/loongarch64/pthread_arch.h

16 lines
278 B
C
Raw Normal View History

static inline uintptr_t __get_tp();
#ifndef __CCGO__
static inline uintptr_t __get_tp()
{
register uintptr_t tp __asm__("tp");
__asm__ ("" : "=r" (tp) );
return tp;
}
#endif
#define TLS_ABOVE_TP
#define GAP_ABOVE_TP 0
#define DTP_OFFSET 0
#define MC_PC __pc