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/internal/pthread_impl.h | |
parent | f5f7673d71f843b423e60bbdd7de49fd1bbcc8c1 (diff) | |
download | musl-5e1019b01c968707accc85c99e63a18af665cf27.tar.gz musl-5e1019b01c968707accc85c99e63a18af665cf27.tar.bz2 musl-5e1019b01c968707accc85c99e63a18af665cf27.tar.xz musl-5e1019b01c968707accc85c99e63a18af665cf27.zip |
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/internal/pthread_impl.h')
-rw-r--r-- | src/internal/pthread_impl.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/internal/pthread_impl.h b/src/internal/pthread_impl.h index 3c85544c..813b5966 100644 --- a/src/internal/pthread_impl.h +++ b/src/internal/pthread_impl.h @@ -142,7 +142,7 @@ void *__copy_tls(unsigned char *); void __reset_tls(); hidden int __clone(int (*)(void *), void *, int, void *, ...); -int __set_thread_area(void *); +hidden int __set_thread_area(void *); int __libc_sigaction(int, const struct sigaction *, struct sigaction *); void __unmapself(void *, size_t); |