This is the mail archive of the glibc-cvs@sourceware.org mailing list for the glibc project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

GNU C Library master sources branch master updated. glibc-2.22-404-g3c82bb5


This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "GNU C Library master sources".

The branch, master has been updated
       via  3c82bb5042330441a18fd8e8d5b74d25d5540a66 (commit)
      from  f84114688abe316b6a736302a7c13f4883d41f13 (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
http://sourceware.org/git/gitweb.cgi?p=glibc.git;a=commitdiff;h=3c82bb5042330441a18fd8e8d5b74d25d5540a66

commit 3c82bb5042330441a18fd8e8d5b74d25d5540a66
Author: H.J. Lu <hjl.tools@gmail.com>
Date:   Thu Oct 15 14:33:26 2015 -0700

    Mark ld.so internel __uname hidden
    
    Since ld.so internel __uname is only used internally in ld.so, it can
    be made hidden.
    
    	[BZ #19122]
    	* include/sys/utsname.h [IS_IN (rtld)] (__uname): Add
    	attribute_hidden.

diff --git a/ChangeLog b/ChangeLog
index bca8f9e..0261e66 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,6 +1,9 @@
 2015-10-15  H.J. Lu  <hongjiu.lu@intel.com>
 
 	[BZ #19122]
+	* include/sys/utsname.h [IS_IN (rtld)] (__uname): Add
+	attribute_hidden.
+
 	* include/string.h [IS_IN (rtld)] (__stpcpy): Add
 	attribute_hidden.
 	[IS_IN (rtld)] (__strdup): Likewise.
diff --git a/include/sys/utsname.h b/include/sys/utsname.h
index 66a5289..14f4247 100644
--- a/include/sys/utsname.h
+++ b/include/sys/utsname.h
@@ -6,5 +6,9 @@ extern int __uname (struct utsname *__name);
 
 libc_hidden_proto (uname)
 libc_hidden_proto (__uname)
+
+# if IS_IN (rtld)
+extern __typeof (__uname) __uname attribute_hidden;
+# endif
 #endif
 #endif

-----------------------------------------------------------------------

Summary of changes:
 ChangeLog             |    3 +++
 include/sys/utsname.h |    4 ++++
 2 files changed, 7 insertions(+), 0 deletions(-)


hooks/post-receive
-- 
GNU C Library master sources


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]