diff options
author | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2015-02-12 23:32:44 +0100 |
---|---|---|
committer | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2015-02-12 23:32:44 +0100 |
commit | 9dd3e61fcc58a31991ce775a7c78383aa4419cee (patch) | |
tree | e8a4a22b5ffec09be20de9684bc0dcc8939695ca /pthread/pt-internal.h | |
parent | 44ae774bed1a75ea926590f1bc7c9f3328219832 (diff) |
Rename __pthread_init into ___pthread_init
To avoid clashing with the __pthread_init hook.
* pthread/pt-initialize.c (__pthread_init): Rename into ___pthread_init.
* pthread/pt-internal.h: Likewise.
* sysdeps/mach/hurd/pt-sysdep.c: Likewise.
Diffstat (limited to 'pthread/pt-internal.h')
-rw-r--r-- | pthread/pt-internal.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pthread/pt-internal.h b/pthread/pt-internal.h index fb9267e..84964bf 100644 --- a/pthread/pt-internal.h +++ b/pthread/pt-internal.h @@ -205,7 +205,7 @@ extern struct __pthread *_pthread_self (void); /* Initialize the pthreads library. */ -extern void __pthread_init (void); +extern void ___pthread_init (void); /* Internal version of pthread_create. Rather than return the new tid, we return the whole __pthread structure in *PTHREAD. */ |