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: 6882 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;