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.
This commit is contained in:
Rich Felker
2018-09-12 14:34:31 -04:00
parent f9db9eca40
commit 91c6a187b8
5 changed files with 6 additions and 10 deletions
+6
View File
@@ -135,6 +135,12 @@ struct __timer {
((sigset_t *)(const unsigned long [_NSIG/8/sizeof(long)]){ \
0x80000000 })
void *__tls_get_addr(tls_mod_off_t *);
hidden void *__tls_get_new(tls_mod_off_t *);
int __init_tp(void *);
void *__copy_tls(unsigned char *);
void __reset_tls();
int __clone(int (*)(void *), void *, int, void *, ...);
int __set_thread_area(void *);
int __libc_sigaction(int, const struct sigaction *, struct sigaction *);
-2
View File
@@ -2,8 +2,6 @@
#include "pthread_impl.h"
#include "libc.h"
hidden void *__tls_get_new(tls_mod_off_t *);
void *__tls_get_addr(tls_mod_off_t *v)
{
pthread_t self = __pthread_self();
-2
View File
@@ -178,8 +178,6 @@ static void init_file_lock(FILE *f)
if (f && f->lock<0) f->lock = 0;
}
void *__copy_tls(unsigned char *);
int __pthread_create(pthread_t *restrict res, const pthread_attr_t *restrict attrp, void *(*entry)(void *), void *restrict arg)
{
int ret, c11 = (attrp == __ATTRP_C11_THREAD);
-2
View File
@@ -19,8 +19,6 @@ static void dummy_0()
}
weak_alias(dummy_0, __pthread_tsd_run_dtors);
void __reset_tls();
static void cleanup_fromsig(void *p)
{
pthread_t self = __pthread_self();