From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from albireo.enyo.de (albireo.enyo.de [37.24.231.21]) by sourceware.org (Postfix) with ESMTPS id 5EC69385BF81 for ; Tue, 28 Apr 2020 14:50:11 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.3.2 sourceware.org 5EC69385BF81 Authentication-Results: sourceware.org; dmarc=none (p=none dis=none) header.from=deneb.enyo.de Authentication-Results: sourceware.org; spf=pass smtp.mailfrom=fw@deneb.enyo.de Received: from [172.17.203.2] (helo=deneb.enyo.de) by albireo.enyo.de with esmtps (TLS1.3:ECDHE_RSA_AES_256_GCM_SHA384:256) id 1jTRYn-0006Ya-UA; Tue, 28 Apr 2020 14:50:09 +0000 Received: from fw by deneb.enyo.de with local (Exim 4.92) (envelope-from ) id 1jTRYn-0000T1-SP; Tue, 28 Apr 2020 16:50:09 +0200 From: Florian Weimer To: Adhemerval Zanella via Libc-alpha Subject: Re: [PATCH 2/5] signal: Move sys_siglist to a compat symbol References: <20200427214855.2523259-1-adhemerval.zanella@linaro.org> <20200427214855.2523259-2-adhemerval.zanella@linaro.org> Date: Tue, 28 Apr 2020 16:50:09 +0200 In-Reply-To: <20200427214855.2523259-2-adhemerval.zanella@linaro.org> (Adhemerval Zanella via Libc-alpha's message of "Mon, 27 Apr 2020 18:48:52 -0300") Message-ID: <87blnbpsv2.fsf@mid.deneb.enyo.de> MIME-Version: 1.0 Content-Type: text/plain X-Spam-Status: No, score=-21.8 required=5.0 tests=BAYES_00, GIT_PATCH_0, GIT_PATCH_1, GIT_PATCH_2, GIT_PATCH_3, KAM_DMARC_STATUS, 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: Tue, 28 Apr 2020 14:50:12 -0000 * Adhemerval Zanella via Libc-alpha: > diff --git a/signal/signal.h b/signal/signal.h > index fa8de963f8..3739550e5f 100644 > --- a/signal/signal.h > +++ b/signal/signal.h > @@ -281,12 +281,6 @@ extern int sigqueue (__pid_t __pid, int __sig, const union sigval __val) > > #ifdef __USE_MISC > > -/* Names of the signals. This variable exists only for compatibility. > - Use `strsignal' instead (see ). */ > -extern const char *const _sys_siglist[_NSIG]; > -extern const char *const sys_siglist[_NSIG]; This is yet another removal without a formal deprecation warning. Do we really want to do this? mutt does not yet use strsignal, for example.