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-431-gcf6d542


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  cf6d542db3dfe26402b6adaa740a578b54767f65 (commit)
      from  6ec52bf634b7650b57ff67b5f5053bce8992d549 (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=cf6d542db3dfe26402b6adaa740a578b54767f65

commit cf6d542db3dfe26402b6adaa740a578b54767f65
Author: H.J. Lu <hjl.tools@gmail.com>
Date:   Mon Oct 19 12:01:32 2015 -0700

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

diff --git a/ChangeLog b/ChangeLog
index b955eb5..007f6c9 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2015-10-16  H.J. Lu  <hongjiu.lu@intel.com>
+
+	[BZ #19122]
+	* include/sys/stat.h [IS_IN (rtld)] (__fxstatat64): Add
+	attribute_hidden.
+
 2015-10-19  Tulio Magno Quites Machado Filho  <tuliom@linux.vnet.ibm.com>
 
 	[BZ #18743]
diff --git a/include/sys/stat.h b/include/sys/stat.h
index 873562a..4f31c00 100644
--- a/include/sys/stat.h
+++ b/include/sys/stat.h
@@ -35,6 +35,9 @@ libc_hidden_proto (__xmknodat)
 libc_hidden_proto (__fxstatat)
 libc_hidden_proto (__fxstatat64)
 
+# if IS_IN (rtld)
+extern __typeof (__fxstatat64) __fxstatat64 attribute_hidden;
+# endif
 
 /* The `stat', `fstat', `lstat' functions have to be handled special since
    even while not compiling the library with optimization calls to these

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

Summary of changes:
 ChangeLog          |    6 ++++++
 include/sys/stat.h |    3 +++
 2 files changed, 9 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]