OSDN Git Service

errno: hide __libc_resp, __libc_errno, and __libc_h_errno
authorKhem Raj <raj.khem@gmail.com>
Mon, 25 Jan 2010 23:11:05 +0000 (15:11 -0800)
committerKhem Raj <raj.khem@gmail.com>
Mon, 1 Feb 2010 19:28:57 +0000 (11:28 -0800)
Signed-off-by: Khem Raj <raj.khem@gmail.com>
libc/inet/resolv.c
libc/misc/internals/errno.c

index 4087f8d..ee1323e 100644 (file)
@@ -3018,7 +3018,7 @@ __thread struct __res_state *__resp = &_res;
  *        relocations.
  */
 extern __thread struct __res_state *__libc_resp
-       __attribute__ ((alias ("__resp")));
+       __attribute__ ((alias ("__resp"))) attribute_hidden;
 # else
 #  undef __resp
 struct __res_state *__resp = &_res;
index e1b5d7e..11d19ee 100644 (file)
@@ -4,15 +4,14 @@
 __thread int errno;
 __thread int h_errno;
 
-extern __thread int __libc_errno __attribute__ ((alias ("errno")));
-extern __thread int __libc_h_errno __attribute__ ((alias ("h_errno")));
+extern __thread int __libc_errno __attribute__ ((alias ("errno"))) attribute_hidden;
+extern __thread int __libc_h_errno __attribute__ ((alias ("h_errno"))) attribute_hidden;
 #define h_errno __libc_h_errno
 
 #else
 #include "internal_errno.h"
 int errno = 0;
 int h_errno = 0;
-
 #ifdef __UCLIBC_HAS_THREADS__
 libc_hidden_def(errno)
 weak_alias(errno, _errno)