]> git.ipfire.org Git - thirdparty/glibc.git/commitdiff
NaCl: Fix missing getdtablesize symbol.
authorRoland McGrath <roland@hack.frob.com>
Thu, 23 Jul 2015 22:54:21 +0000 (15:54 -0700)
committerRoland McGrath <roland@hack.frob.com>
Thu, 23 Jul 2015 22:54:21 +0000 (15:54 -0700)
ChangeLog
sysdeps/arm/nacl/libc.abilist
sysdeps/nacl/getdtsz.c

index 488768ffcee6f898f08285d0267eb46526900cc9..3400f7b018af806e4bb61839dd3cd3dd35808ef3 100644 (file)
--- 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.
index 5e7769145b49959c31b7364dc0156f7dbe7a29e8..b3d14c2bf03624ef9f39038504354aaef835f03f 100644 (file)
@@ -853,6 +853,7 @@ GLIBC_2.22
  getdate_r F
  getdelim F
  getdomainname F
+ getdtablesize F
  getegid F
  getenv F
  geteuid F
index 31c997810378ad8089396306b023ed2223ee9b23..e0ba14fdfa8ee75085d2f0e1d2518c2eb9f0e099 100644 (file)
@@ -26,3 +26,4 @@ __getdtablesize (void)
   /* There is no actual limit in NaCl, just memory.  */
   return -1;
 }
+weak_alias (__getdtablesize, getdtablesize)