From patchwork Thu Jul 23 22:55:06 2015 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Roland McGrath X-Patchwork-Id: 7829 Received: (qmail 49666 invoked by alias); 23 Jul 2015 22:55:10 -0000 Mailing-List: contact libc-alpha-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Unsubscribe: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: libc-alpha-owner@sourceware.org Delivered-To: mailing list libc-alpha@sourceware.org Received: (qmail 49657 invoked by uid 89); 23 Jul 2015 22:55:10 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-0.3 required=5.0 tests=AWL, BAYES_50, KAM_LAZY_DOMAIN_SECURITY autolearn=no version=3.3.2 X-HELO: topped-with-meat.com MIME-Version: 1.0 From: Roland McGrath To: "GNU C. Library" Subject: [COMMITTED PATCH] NaCl: Fix missing getdtablesize symbol. Message-Id: <20150723225506.499FE2C3B83@topped-with-meat.com> Date: Thu, 23 Jul 2015 15:55:06 -0700 (PDT) X-CMAE-Score: 0 X-CMAE-Analysis: v=2.1 cv=SvUDtp+0 c=1 sm=1 tr=0 a=WkljmVdYkabdwxfqvArNOQ==:117 a=14OXPxybAAAA:8 a=hOe2yjtxAAAA:8 a=kj9zAlcOel0A:10 a=OkmMfQZAxsXnR3PVJH0A:9 a=CjuIK1q_8ugA:10 2015-07-23 Roland McGrath * sysdeps/nacl/getdtsz.c (getdtablesize): Add missing weak_alias. * sysdeps/arm/nacl/libc.abilist: Add it. 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)