mirror of
https://github.com/fluencelabs/musl
synced 2025-06-10 21:41:33 +00:00
use __attribute__((const)) on arm __pthread_self function
This commit is contained in:
@ -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
|
||||
|
Reference in New Issue
Block a user