summaryrefslogtreecommitdiff
path: root/sysdeps/mach
diff options
context:
space:
mode:
authorSamuel Thibault <samuel.thibault@ens-lyon.org>2015-02-12 23:32:44 +0100
committerSamuel Thibault <samuel.thibault@ens-lyon.org>2015-02-12 23:32:44 +0100
commit9dd3e61fcc58a31991ce775a7c78383aa4419cee (patch)
treee8a4a22b5ffec09be20de9684bc0dcc8939695ca /sysdeps/mach
parent44ae774bed1a75ea926590f1bc7c9f3328219832 (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 'sysdeps/mach')
-rw-r--r--sysdeps/mach/hurd/pt-sysdep.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sysdeps/mach/hurd/pt-sysdep.c b/sysdeps/mach/hurd/pt-sysdep.c
index 038d614..8d40185 100644
--- a/sysdeps/mach/hurd/pt-sysdep.c
+++ b/sysdeps/mach/hurd/pt-sysdep.c
@@ -45,7 +45,7 @@ init_routine (void)
int err;
/* Initialize the library. */
- __pthread_init ();
+ ___pthread_init ();
/* Create the pthread structure for the main thread (i.e. us). */
err = __pthread_create_internal (&thread, 0, 0, 0);