mirror of
git://git.musl-libc.org/musl
synced 2025-03-06 20:48:29 +01:00
use __attribute__((const)) on arm __pthread_self function
This commit is contained in:
parent
06aec8d715
commit
834255a3ff
1 changed files with 3 additions and 1 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Reference in a new issue