mirror of
https://sourceware.org/git/glibc.git
synced 2024-11-10 15:20:10 +00:00
NaCl: Fix missing getdtablesize symbol.
This commit is contained in:
parent
3840aabcd5
commit
f8c3be3f23
@ -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.
|
||||
|
@ -853,6 +853,7 @@ GLIBC_2.22
|
||||
getdate_r F
|
||||
getdelim F
|
||||
getdomainname F
|
||||
getdtablesize F
|
||||
getegid F
|
||||
getenv F
|
||||
geteuid F
|
||||
|
@ -26,3 +26,4 @@ __getdtablesize (void)
|
||||
/* There is no actual limit in NaCl, just memory. */
|
||||
return -1;
|
||||
}
|
||||
weak_alias (__getdtablesize, getdtablesize)
|
||||
|
Loading…
Reference in New Issue
Block a user