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.21-636-gf8c3be3


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  f8c3be3f23ffc2f5853cb57277c56987c18d0ab6 (commit)
      from  3840aabcd5b482b5e6cf5b204d1019ea0ddc9827 (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=f8c3be3f23ffc2f5853cb57277c56987c18d0ab6

commit f8c3be3f23ffc2f5853cb57277c56987c18d0ab6
Author: Roland McGrath <roland@hack.frob.com>
Date:   Thu Jul 23 15:54:21 2015 -0700

    NaCl: Fix missing getdtablesize symbol.

diff --git a/ChangeLog b/ChangeLog
index 488768f..3400f7b 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2015-07-23  Roland McGrath  <roland@hack.frob.com>
+
+	* sysdeps/nacl/getdtsz.c (getdtablesize): Add missing weak_alias.
+	* sysdeps/arm/nacl/libc.abilist: Add it.
+
 2015-07-23  Mike Frysinger  <vapier@gentoo.org>
 
 	* conform/linknamespace.pl (@whitelist): Add matherrf and matherrl.
diff --git a/sysdeps/arm/nacl/libc.abilist b/sysdeps/arm/nacl/libc.abilist
index 5e77691..b3d14c2 100644
--- a/sysdeps/arm/nacl/libc.abilist
+++ b/sysdeps/arm/nacl/libc.abilist
@@ -853,6 +853,7 @@ GLIBC_2.22
  getdate_r F
  getdelim F
  getdomainname F
+ getdtablesize F
  getegid F
  getenv F
  geteuid F
diff --git a/sysdeps/nacl/getdtsz.c b/sysdeps/nacl/getdtsz.c
index 31c9978..e0ba14f 100644
--- a/sysdeps/nacl/getdtsz.c
+++ b/sysdeps/nacl/getdtsz.c
@@ -26,3 +26,4 @@ __getdtablesize (void)
   /* There is no actual limit in NaCl, just memory.  */
   return -1;
 }
+weak_alias (__getdtablesize, getdtablesize)

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

Summary of changes:
 ChangeLog                     |    5 +++++
 sysdeps/arm/nacl/libc.abilist |    1 +
 sysdeps/nacl/getdtsz.c        |    1 +
 3 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]