diff options
author | Rich Felker <dalias@aerifal.cx> | 2018-09-10 15:42:03 -0400 |
---|---|---|
committer | Rich Felker <dalias@aerifal.cx> | 2018-09-12 14:34:32 -0400 |
commit | 5e1019b01c968707accc85c99e63a18af665cf27 (patch) | |
tree | fbdd7f7fbc27541550139f771cc2a2e163db1145 /src/thread/aarch64/__set_thread_area.s | |
parent | f5f7673d71f843b423e60bbdd7de49fd1bbcc8c1 (diff) | |
download | musl-5e1019b01c968707accc85c99e63a18af665cf27.tar.gz |
make arch __set_thread_area backends hidden
this is not a public interface, and does not even necessarily match
the syscall on all archs that have a syscall by that name.
on archs where it's implemented in C, no action on the source file is
needed; the hidden declaration in pthread_arch.h suffices.
Diffstat (limited to 'src/thread/aarch64/__set_thread_area.s')
-rw-r--r-- | src/thread/aarch64/__set_thread_area.s | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/thread/aarch64/__set_thread_area.s b/src/thread/aarch64/__set_thread_area.s index 97a80acc..fd0df34b 100644 --- a/src/thread/aarch64/__set_thread_area.s +++ b/src/thread/aarch64/__set_thread_area.s @@ -1,4 +1,5 @@ .global __set_thread_area +.hidden __set_thread_area .type __set_thread_area,@function __set_thread_area: msr tpidr_el0,x0 |