From 49e9f864906640e913ad69f98ce6ee24776d5b8d Mon Sep 17 00:00:00 2001 From: Ulrich Drepper Date: Mon, 30 Dec 2002 23:45:39 +0000 Subject: Update. 2002-12-30 Jakub Jelinek * forward.c (FORWARD2): Renamed from FORWARD3. Remove unused export argument. (pthread_attr_init_2_0, pthread_attr_init_2_1): Use FORWARD macro. (pthread_exit): Use strong_alias to avoid warnings. * pthreadP.h (struct pthread_functions): Rename ptr_pthread_exit and ptr_pthread_attr_init_2_* to ptr___pthread_exit and ptr___pthread_attr_init_2_*. * init.c (pthread_functions): Adjust. --- nptl/init.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'nptl/init.c') diff --git a/nptl/init.c b/nptl/init.c index 39cf41e..8da87c5 100644 --- a/nptl/init.c +++ b/nptl/init.c @@ -56,8 +56,8 @@ extern void __libc_setup_tls (size_t tcbsize, size_t tcbalign); static struct pthread_functions pthread_functions = { .ptr_pthread_attr_destroy = __pthread_attr_destroy, - .ptr_pthread_attr_init_2_0 = __pthread_attr_init_2_0, - .ptr_pthread_attr_init_2_1 = __pthread_attr_init_2_1, + .ptr___pthread_attr_init_2_0 = __pthread_attr_init_2_0, + .ptr___pthread_attr_init_2_1 = __pthread_attr_init_2_1, .ptr_pthread_attr_getdetachstate = __pthread_attr_getdetachstate, .ptr_pthread_attr_setdetachstate = __pthread_attr_setdetachstate, .ptr_pthread_attr_getinheritsched = __pthread_attr_getinheritsched, @@ -76,7 +76,7 @@ static struct pthread_functions pthread_functions = .ptr_pthread_cond_signal = __pthread_cond_signal, .ptr_pthread_cond_wait = __pthread_cond_wait, .ptr_pthread_equal = __pthread_equal, - .ptr_pthread_exit = __pthread_exit, + .ptr___pthread_exit = __pthread_exit, .ptr_pthread_getschedparam = __pthread_getschedparam, .ptr_pthread_setschedparam = __pthread_setschedparam, .ptr_pthread_mutex_destroy = INTUSE(__pthread_mutex_destroy), -- cgit v1.1