X-Git-Url: http://nsz.repo.hu/git/?a=blobdiff_plain;f=arch%2Farm%2Fpthread_arch.h;h=43a1c012f466dcd41bc6444edfd4c265c722f7cd;hb=3e7f186ea18d7362e3e117f6e848b5514d8266d1;hp=5f96f2b07d36c0162aa2545c44d9d03e3911166a;hpb=834255a3ffb5be208024e66b1f794d9f4201413c;p=musl diff --git a/arch/arm/pthread_arch.h b/arch/arm/pthread_arch.h index 5f96f2b0..43a1c012 100644 --- a/arch/arm/pthread_arch.h +++ b/arch/arm/pthread_arch.h @@ -1,6 +1,9 @@ -typedef pthread_t (*__pthread_self_func_t)(void) __attribute__((const)); +typedef char *(*__ptr_func_t)(void) __attribute__((const)); -#define __pthread_self ((__pthread_self_func_t)0xffff0fe0) +#define __pthread_self() \ + ((pthread_t)(((__ptr_func_t)0xffff0fe0)()+8-sizeof(struct pthread))) + +#define TLS_ABOVE_TP +#define TP_ADJ(p) ((char *)(p) + sizeof(struct pthread) - 8) -#define CANCEL_REG_SP 16 #define CANCEL_REG_IP 18