From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-qt1-x835.google.com (mail-qt1-x835.google.com [IPv6:2607:f8b0:4864:20::835]) by sourceware.org (Postfix) with ESMTPS id 3D28D3857418 for ; Mon, 10 May 2021 13:21:05 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.3.2 sourceware.org 3D28D3857418 Received: by mail-qt1-x835.google.com with SMTP id f8so7675443qth.6 for ; Mon, 10 May 2021 06:21:05 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:subject:to:references:from:message-id:date :user-agent:mime-version:in-reply-to:content-language :content-transfer-encoding; bh=6ibgkdLwz0BD60TZJqRVFp2YmTdHQ+bgMelb2GL+Sok=; b=QUcaehuIPLvlHKBNYSyhvxyx0+6b+rmhbX/W2PX5KmXeQGAQ827Z0LL/3j1iW6jMWC 7Q7k4L3jyMWemK/XJRUUFfq0ihlJucuWiE7Q4o6Bg/U+cLko1jaS++4Zh5Dmp5wdu43X l5bt3IA6sUGmxVpjohI3uil9N7UrGnii+2NHl6BerEJmFO2TIYjZjN/iwesAnMHtkCQ0 Pw0k0QtAycnoIjtT1wioDeLUDGUKpOq+syEvEtifF4dTYRDh7jvYlrc30RW09Cs/LknZ KYRF+X7mKR9+/O1qDxh0Qia4ZSZj7cnTGpgeDlzVoJH64ALqT1rlG8l2Wa5/5oM5pzaj vRkw== X-Gm-Message-State: AOAM5329++P7KRGti+VulPicx/NGeEEcxE0nr1bjxFveiZnvE9XYQYF4 7smOGMhDP0jGWURGu5zOPLzR1nAPvrIZlg== X-Google-Smtp-Source: ABdhPJwa78qSQvZ3dH3EbB/QOMAZl7gG5C9rXtwLJgwpc++diAzBNiYpS4t57soNm0PGmDclu29roA== X-Received: by 2002:ac8:a49:: with SMTP id f9mr3605843qti.157.1620652864622; Mon, 10 May 2021 06:21:04 -0700 (PDT) Received: from [192.168.1.4] ([177.194.37.86]) by smtp.gmail.com with ESMTPSA id 129sm11309219qkn.44.2021.05.10.06.21.03 (version=TLS1_3 cipher=TLS_AES_128_GCM_SHA256 bits=128/128); Mon, 10 May 2021 06:21:04 -0700 (PDT) Subject: Re: [PATCH 1/8] nptl: Remove unused nptl/pthread_sigqueue.c stub implementation To: Florian Weimer , libc-alpha@sourceware.org References: From: Adhemerval Zanella Message-ID: Date: Mon, 10 May 2021 10:21:01 -0300 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:78.0) Gecko/20100101 Thunderbird/78.8.1 MIME-Version: 1.0 In-Reply-To: Content-Type: text/plain; charset=utf-8 Content-Language: en-US Content-Transfer-Encoding: 7bit X-Spam-Status: No, score=-12.6 required=5.0 tests=BAYES_00, DKIM_SIGNED, DKIM_VALID, DKIM_VALID_AU, DKIM_VALID_EF, GIT_PATCH_0, KAM_SHORT, NICE_REPLY_A, RCVD_IN_DNSWL_NONE, SPF_HELO_NONE, SPF_PASS, TXREP autolearn=ham autolearn_force=no version=3.4.2 X-Spam-Checker-Version: SpamAssassin 3.4.2 (2018-09-13) on server2.sourceware.org X-BeenThere: libc-alpha@sourceware.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Libc-alpha mailing list List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 10 May 2021 13:21:07 -0000 LGTM, thanks. Reviewed-by: Adhemerval Zanella On 10/05/2021 09:37, Florian Weimer via Libc-alpha wrote: > --- > nptl/pthread_sigqueue.c | 37 ------------------------------------- > 1 file changed, 37 deletions(-) > delete mode 100644 nptl/pthread_sigqueue.c > > diff --git a/nptl/pthread_sigqueue.c b/nptl/pthread_sigqueue.c > deleted file mode 100644 > index 7d60e2b98d..0000000000 > --- a/nptl/pthread_sigqueue.c > +++ /dev/null > @@ -1,37 +0,0 @@ > -/* Queue a signal (with value) for a specific pthread. Stub version. > - Copyright (C) 2014-2021 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 > - > - > -int > -pthread_sigqueue (pthread_t threadid, int signo, const union sigval value) > -{ > - struct pthread *pd = (struct pthread *) threadid; > - > - /* Make sure the descriptor is valid. */ > - if (DEBUGGING_P && INVALID_TD_P (pd)) > - /* Not a valid thread handle. */ > - return ESRCH; > - > - return ENOSYS; > -} > - > -stub_warning (pthread_sigqueue) >