From: Richard Henderson Date: Wed, 21 May 2014 18:58:13 +0000 (-0700) Subject: alpha: Remove nptl/fork.c X-Git-Tag: upstream/2.30~7450 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=132c7f5f01fe17f3161be7d03c7b1f07ae46b98b;p=external%2Fglibc.git alpha: Remove nptl/fork.c The merge at ab21431318d99c94e644606dee1e6a4545d98007 failed to properly remove the file. --- 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