NaCl: Fix missing getdtablesize symbol.

This commit is contained in:
Roland McGrath 2015-07-23 15:54:21 -07:00
parent 3840aabcd5
commit f8c3be3f23
3 changed files with 7 additions and 0 deletions

View File

@ -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.

View File

@ -853,6 +853,7 @@ GLIBC_2.22
getdate_r F
getdelim F
getdomainname F
getdtablesize F
getegid F
getenv F
geteuid F

View File

@ -26,3 +26,4 @@ __getdtablesize (void)
/* There is no actual limit in NaCl, just memory. */
return -1;
}
weak_alias (__getdtablesize, getdtablesize)