diff options
-rw-r--r-- | ChangeLog | 9 | ||||
-rw-r--r-- | include/rpc/rpc.h | 8 |
2 files changed, 13 insertions, 4 deletions
@@ -1,6 +1,15 @@ 2017-10-01 H.J. Lu <hongjiu.lu@intel.com> [BZ #18822] + * include/rpc/rpc.h (__rpc_thread_variables): Add + attribute_hidden. + (__rpc_thread_svc_cleanup): Likewise. + (__rpc_thread_clnt_cleanup): Likewise. + (__rpc_thread_key_cleanup): Likewise. + +2017-10-01 H.J. Lu <hongjiu.lu@intel.com> + + [BZ #18822] * include/sys/uio.h (__readv): Add libc_hidden_proto. (__writev): Likewise. * misc/readv.c (__readv): Add libc_hidden_def. diff --git a/include/rpc/rpc.h b/include/rpc/rpc.h index 60c7896..1fb925e 100644 --- a/include/rpc/rpc.h +++ b/include/rpc/rpc.h @@ -41,10 +41,10 @@ struct rpc_thread_variables { }; extern struct rpc_thread_variables *__rpc_thread_variables(void) - __attribute__ ((const)); -extern void __rpc_thread_svc_cleanup (void); -extern void __rpc_thread_clnt_cleanup (void); -extern void __rpc_thread_key_cleanup (void); + __attribute__ ((const)) attribute_hidden; +extern void __rpc_thread_svc_cleanup (void) attribute_hidden; +extern void __rpc_thread_clnt_cleanup (void) attribute_hidden; +extern void __rpc_thread_key_cleanup (void) attribute_hidden; extern void __rpc_thread_destroy (void); |