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.20-138-gf62ff28


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  f62ff286838e572ee124ca2d2dc5ccf619345015 (commit)
      from  b09adb5b46327e4a2ea354d5524280146d9c6015 (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=f62ff286838e572ee124ca2d2dc5ccf619345015

commit f62ff286838e572ee124ca2d2dc5ccf619345015
Author: Joseph Myers <joseph@codesourcery.com>
Date:   Fri Oct 31 21:22:35 2014 +0000

    Remove __libc_pselect alias.
    
    Continuing the removal of unused __libc_* function names, this patch
    removes the __libc_pselect alias.
    
    Tested for x86_64 that installed stripped shared libraries are
    unchanged by this patch.
    
    	* misc/pselect.c [!__pselect] (__libc_pselect): Remove alias.
    	* sysdeps/unix/sysv/linux/pselect.c [__NR_pselect6]
    	(__libc_pselect): Likewise.

diff --git a/ChangeLog b/ChangeLog
index 6a63313..a050d89 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,9 @@
 2014-10-31  Joseph Myers  <joseph@codesourcery.com>
 
+	* misc/pselect.c [!__pselect] (__libc_pselect): Remove alias.
+	* sysdeps/unix/sysv/linux/pselect.c [__NR_pselect6]
+	(__libc_pselect): Likewise.
+
 	[BZ #14138]
 	* sysdeps/unix/sysv/linux/powerpc/powerpc64/pread.c: Remove file.
 	* sysdeps/unix/sysv/linux/powerpc/powerpc64/pread64.c: Likewise.
diff --git a/misc/pselect.c b/misc/pselect.c
index 478dcce..ba757df 100644
--- a/misc/pselect.c
+++ b/misc/pselect.c
@@ -73,7 +73,6 @@ __pselect (int nfds, fd_set *readfds, fd_set *writefds, fd_set *exceptfds,
 }
 #ifndef __pselect
 weak_alias (__pselect, pselect)
-strong_alias (__pselect, __libc_pselect)
 /* __select handles cancellation.  */
 LIBC_CANCEL_HANDLED ();
 #endif
diff --git a/sysdeps/unix/sysv/linux/pselect.c b/sysdeps/unix/sysv/linux/pselect.c
index b4e77c1..5c745c9 100644
--- a/sysdeps/unix/sysv/linux/pselect.c
+++ b/sysdeps/unix/sysv/linux/pselect.c
@@ -89,7 +89,6 @@ __pselect (int nfds, fd_set *readfds, fd_set *writefds, fd_set *exceptfds,
   return result;
 }
 weak_alias (__pselect, pselect)
-strong_alias (__pselect, __libc_pselect)
 
 # ifndef __ASSUME_PSELECT
 #  define __pselect static __generic_pselect

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

Summary of changes:
 ChangeLog                         |    4 ++++
 misc/pselect.c                    |    1 -
 sysdeps/unix/sysv/linux/pselect.c |    1 -
 3 files changed, 4 insertions(+), 2 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]