use __attribute__((const)) on arm __pthread_self function
authorRich Felker <dalias@aerifal.cx>
Sat, 25 Feb 2012 07:52:18 +0000 (02:52 -0500)
committerRich Felker <dalias@aerifal.cx>
Sat, 25 Feb 2012 07:52:18 +0000 (02:52 -0500)
arch/arm/pthread_arch.h

index e607c5dbd0e20e94fc767984eb4b4aa3a3ad0280..5f96f2b07d36c0162aa2545c44d9d03e3911166a 100644 (file)
@@ -1,4 +1,6 @@
-#define __pthread_self ((pthread_t (*)(void))0xffff0fe0)
+typedef pthread_t (*__pthread_self_func_t)(void) __attribute__((const));
+
+#define __pthread_self ((__pthread_self_func_t)0xffff0fe0)
 
 #define CANCEL_REG_SP 16
 #define CANCEL_REG_IP 18