diff options
author | Rich Felker <dalias@aerifal.cx> | 2018-09-08 18:46:06 -0400 |
---|---|---|
committer | Rich Felker <dalias@aerifal.cx> | 2018-09-12 14:34:31 -0400 |
commit | 91c6a187b89cb1ea9afc6a963106fbccca218dde (patch) | |
tree | ac9bdd0d00994b9f5630ae107af8455208e352de /ldso | |
parent | f9db9eca40fdc78fae258b8e12eb689fc2d5e0e5 (diff) | |
download | musl-91c6a187b89cb1ea9afc6a963106fbccca218dde.tar.gz musl-91c6a187b89cb1ea9afc6a963106fbccca218dde.tar.bz2 musl-91c6a187b89cb1ea9afc6a963106fbccca218dde.tar.xz musl-91c6a187b89cb1ea9afc6a963106fbccca218dde.zip |
move declarations of tls setup/access functions to pthread_impl.h
it's already included in all places where these are needed, and aside
from __tls_get_addr, they're all implementation internals.
Diffstat (limited to 'ldso')
-rw-r--r-- | ldso/dynlink.c | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/ldso/dynlink.c b/ldso/dynlink.c index 1d3dacc3..f78a02e6 100644 --- a/ldso/dynlink.c +++ b/ldso/dynlink.c @@ -96,9 +96,7 @@ struct symdef { struct dso *dso; }; -int __init_tp(void *); void __init_libc(char **, char *); -void *__copy_tls(unsigned char *); static struct builtin_tls { char c; @@ -1892,8 +1890,6 @@ static void *addr2dso(size_t a) return 0; } -void *__tls_get_addr(tls_mod_off_t *); - static void *do_dlsym(struct dso *p, const char *s, void *ra) { size_t i; |