From 855dca36fe7aa348dc56996385fbbb77fbf3e83d Mon Sep 17 00:00:00 2001 From: "Peter S. Mazinger" Date: Sat, 3 Dec 2005 23:36:38 +0000 Subject: Rename newly created __libc_x (reserved for libpthread overwrites) w/ x_internal, do not use cascading aliases --- libc/inet/rpc/rpc_thread.c | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) (limited to 'libc/inet/rpc/rpc_thread.c') diff --git a/libc/inet/rpc/rpc_thread.c b/libc/inet/rpc/rpc_thread.c index fb0e19cd9..1e42cbec6 100644 --- a/libc/inet/rpc/rpc_thread.c +++ b/libc/inet/rpc/rpc_thread.c @@ -95,7 +95,7 @@ __rpc_thread_variables (void) #undef svc_max_pollfd fd_set attribute_hidden * -__libc_rpc_thread_svc_fdset (void) +__rpc_thread_svc_fdset_internal (void) { struct rpc_thread_variables *tvp; @@ -104,7 +104,7 @@ __libc_rpc_thread_svc_fdset (void) return &svc_fdset; return &tvp->svc_fdset_s; } -strong_alias(__libc_rpc_thread_svc_fdset,__rpc_thread_svc_fdset) +strong_alias(__rpc_thread_svc_fdset_internal,__rpc_thread_svc_fdset) struct rpc_createerr * __rpc_thread_createerr (void) @@ -118,7 +118,7 @@ __rpc_thread_createerr (void) } struct pollfd attribute_hidden ** -__libc_rpc_thread_svc_pollfd (void) +__rpc_thread_svc_pollfd_internal (void) { struct rpc_thread_variables *tvp; @@ -127,10 +127,10 @@ __libc_rpc_thread_svc_pollfd (void) return &svc_pollfd; return &tvp->svc_pollfd_s; } -strong_alias(__libc_rpc_thread_svc_pollfd,__rpc_thread_svc_pollfd) +strong_alias(__rpc_thread_svc_pollfd_internal,__rpc_thread_svc_pollfd) int attribute_hidden * -__libc_rpc_thread_svc_max_pollfd (void) +__rpc_thread_svc_max_pollfd_internal (void) { struct rpc_thread_variables *tvp; @@ -139,7 +139,7 @@ __libc_rpc_thread_svc_max_pollfd (void) return &svc_max_pollfd; return &tvp->svc_max_pollfd_s; } -strong_alias(__libc_rpc_thread_svc_max_pollfd,__rpc_thread_svc_max_pollfd) +strong_alias(__rpc_thread_svc_max_pollfd_internal,__rpc_thread_svc_max_pollfd) #else #undef svc_fdset @@ -147,12 +147,12 @@ strong_alias(__libc_rpc_thread_svc_max_pollfd,__rpc_thread_svc_max_pollfd) #undef svc_pollfd #undef svc_max_pollfd -fd_set attribute_hidden * __libc_rpc_thread_svc_fdset (void) +fd_set attribute_hidden * __rpc_thread_svc_fdset_internal (void) { extern fd_set svc_fdset; return &(svc_fdset); } -strong_alias(__libc_rpc_thread_svc_fdset,__rpc_thread_svc_fdset) +strong_alias(__rpc_thread_svc_fdset_internal,__rpc_thread_svc_fdset) struct rpc_createerr * __rpc_thread_createerr (void) { @@ -160,19 +160,19 @@ struct rpc_createerr * __rpc_thread_createerr (void) return &(rpc_createerr); } -struct pollfd attribute_hidden ** __libc_rpc_thread_svc_pollfd (void) +struct pollfd attribute_hidden ** __rpc_thread_svc_pollfd_internal (void) { extern struct pollfd *svc_pollfd; return &(svc_pollfd); } -strong_alias(__libc_rpc_thread_svc_pollfd,__rpc_thread_svc_pollfd) +strong_alias(__rpc_thread_svc_pollfd_internal,__rpc_thread_svc_pollfd) -int attribute_hidden * __libc_rpc_thread_svc_max_pollfd (void) +int attribute_hidden * __rpc_thread_svc_max_pollfd_internal (void) { extern int svc_max_pollfd; return &(svc_max_pollfd); } -strong_alias(__libc_rpc_thread_svc_max_pollfd,__rpc_thread_svc_max_pollfd) +strong_alias(__rpc_thread_svc_max_pollfd_internal,__rpc_thread_svc_max_pollfd) #endif /* __UCLIBC_HAS_THREADS__ */ -- cgit v1.2.3