From patchwork Fri May 22 06:23:34 2015 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Khem Raj X-Patchwork-Id: 475306 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from sourceware.org (server1.sourceware.org [209.132.180.131]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by ozlabs.org (Postfix) with ESMTPS id 8079514029C for ; Fri, 22 May 2015 16:23:53 +1000 (AEST) Authentication-Results: ozlabs.org; dkim=pass (1024-bit key; unprotected) header.d=sourceware.org header.i=@sourceware.org header.b=atqdPbk4; dkim-atps=neutral DomainKey-Signature: a=rsa-sha1; c=nofws; d=sourceware.org; h=list-id :list-unsubscribe:list-subscribe:list-archive:list-post :list-help:sender:from:to:cc:subject:date:message-id; q=dns; s= default; b=tyls9OhDGgAXwVmU5PuIR02Tg6huQ0BiRatjTqkBey8N8Aspslz17 zNyEnE8/nRApoFxBqkRpTM0mAXOxUHn2yVPe9uzOBjPHTcWCCW2YhBNIDzcbx8y5 wHKflkGwmjz0uOK/IyUEoS+O7m2cDwbQQ8TpCtRYj74/6HyOfzX6HA= DKIM-Signature: v=1; a=rsa-sha1; c=relaxed; d=sourceware.org; h=list-id :list-unsubscribe:list-subscribe:list-archive:list-post :list-help:sender:from:to:cc:subject:date:message-id; s=default; bh=3xvA/C+SMiMMzO2ENV+50YRo4Pk=; b=atqdPbk4UQelhhMpDns0AunWO1Qm cJO2Kfy2UL8iMccQNrtdk2kbBsL6p8kYRvo6Eq6MmXgtR4Of/dIkBl5nXUsUlXDc 7dcfR+jXXUFtJekrFT0p+CGLtQ/x8ad2Xuo6ZkuTOhYoPugQpfs4xb8H+pXvg1ez QdA1YIpUoAv9PW4= Received: (qmail 113405 invoked by alias); 22 May 2015 06:23:45 -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 113382 invoked by uid 89); 22 May 2015 06:23:44 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=1.8 required=5.0 tests=AWL, BAYES_20, FREEMAIL_FROM, RCVD_IN_DNSWL_LOW, SPF_PASS autolearn=ham version=3.3.2 X-HELO: mail-ig0-f182.google.com X-Received: by 10.107.7.84 with SMTP id 81mr8471881ioh.28.1432275820923; Thu, 21 May 2015 23:23:40 -0700 (PDT) From: Khem Raj To: libc-alpha@sourceware.org Cc: Khem Raj Subject: [PATCH] nptl: Add missing err declaration __pthread_initialize_minimal_internal Date: Thu, 21 May 2015 23:23:34 -0700 Message-Id: <1432275814-4901-1-git-send-email-raj.khem@gmail.com> Fixes build problems on mips nptl-init.c: In function '__pthread_initialize_minimal_internal': nptl-init.c:333:48: error: 'err' undeclared (first use in this function) Signed-off-by: Khem Raj --- ChangeLog | 5 +++++ nptl/nptl-init.c | 1 + 2 files changed, 6 insertions(+) diff --git a/ChangeLog b/ChangeLog index ba7a400..ae5c8d1 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2015-15-21 Khem Raj + + * nptl/nptl-init.c (__pthread_initialize_minimal_internal): Add + INTERNAL_SYSCALL_DECL (err). + 2015-05-21 Joseph Myers * sysdeps/ieee754/dbl-64/e_lgamma_r.c: Include . diff --git a/nptl/nptl-init.c b/nptl/nptl-init.c index 5b8d931..f885c5d 100644 --- a/nptl/nptl-init.c +++ b/nptl/nptl-init.c @@ -309,6 +309,7 @@ __pthread_initialize_minimal_internal (void) used. */ __asm __volatile (""); #endif + INTERNAL_SYSCALL_DECL (err); /* Minimal initialization of the thread descriptor. */ struct pthread *pd = THREAD_SELF;