From patchwork Fri May 23 18:18:30 2014 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Richard Henderson X-Patchwork-Id: 352003 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 BBACC14007C for ; Sat, 24 May 2014 04:19:15 +1000 (EST) 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:subject:date:message-id; q=dns; s= default; b=QBXEHqyNvtmW1Nlz+L6+cIoMqRClzSkhXxRm33uVMxFcajwKkvCLd smxirA9s/Kp27uUpnM1R5au/Ko+wiB7QzkKLfRxycS7+TAnbad88oDKhchGsRPoz CeWUm95chFVYBh3hZN9+Xr3Bdf974ZEZhYxSMkvvu3xjkhL2ibC+Ao= 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:subject:date:message-id; s=default; bh=BMrPp6iU7CkVMeAV3u3Vy9/kxN8=; b=Pq4dQGVnubKiDE+Tp6wPDH9cOTYW OvOw6wS1Dyrwj+Y5BpAV+8/fHyhvoAgSoMmhhdYUQzjCvETzrLaRaNqu0Ar6QI9n d55nmCOktrVBDgtokJudpTkq/igdNaTFex6jhKVp3rj0tlxjanrjb7NXxxqXtz89 mNnm0udLKrbFI8g= Received: (qmail 4722 invoked by alias); 23 May 2014 18:19:09 -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 4710 invoked by uid 89); 23 May 2014 18:19:08 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-2.6 required=5.0 tests=AWL, BAYES_00, FREEMAIL_ENVFROM_END_DIGIT, FREEMAIL_FROM, RCVD_IN_DNSWL_LOW, SPF_PASS autolearn=ham version=3.3.2 X-HELO: mail-qc0-f169.google.com X-Received: by 10.140.48.1 with SMTP id n1mr8833069qga.107.1400869144983; Fri, 23 May 2014 11:19:04 -0700 (PDT) From: Richard Henderson To: libc-alpha@sourceware.org Subject: [COMMITTED 1/4] alpha: Remove nptl/fork.c Date: Fri, 23 May 2014 11:18:30 -0700 Message-Id: <1400869113-11768-1-git-send-email-rth@twiddle.net> The merge at ab21431318d99c94e644606dee1e6a4545d98007 failed to properly remove the file. --- ChangeLog | 4 ++++ sysdeps/unix/sysv/linux/alpha/nptl/fork.c | 29 ----------------------------- 2 files changed, 4 insertions(+), 29 deletions(-) delete mode 100644 sysdeps/unix/sysv/linux/alpha/nptl/fork.c diff --git a/ChangeLog b/ChangeLog index c035c9f..689613e 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +2014-05-23 Richard Henderson + + * sysdeps/unix/sysv/linux/alpha/nptl/fork.c: Remove file. + 2014-05-23 Joseph Myers [BZ #16977] diff --git a/sysdeps/unix/sysv/linux/alpha/nptl/fork.c b/sysdeps/unix/sysv/linux/alpha/nptl/fork.c deleted file mode 100644 index 72ea3cc..0000000 --- a/sysdeps/unix/sysv/linux/alpha/nptl/fork.c +++ /dev/null @@ -1,29 +0,0 @@ -/* Copyright (C) 2003-2014 Free Software Foundation, Inc. - This file is part of the GNU C Library. - - The GNU C Library is free software; you can redistribute it and/or - modify it under the terms of the GNU Lesser General Public - License as published by the Free Software Foundation; either - version 2.1 of the License, or (at your option) any later version. - - The GNU C Library is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - Lesser General Public License for more details. - - You should have received a copy of the GNU Lesser General Public - License along with the GNU C Library. If not, see - . */ - -#include -#include -#include -#include - - -#define ARCH_FORK() \ - INLINE_SYSCALL (clone, 5, \ - CLONE_CHILD_SETTID | CLONE_CHILD_CLEARTID | SIGCHLD, \ - NULL, NULL, &THREAD_SELF->tid, NULL) - -#include