From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 95026 invoked by alias); 20 Mar 2019 15:50:40 -0000 Mailing-List: contact gdb-patches-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: gdb-patches-owner@sourceware.org Received: (qmail 95016 invoked by uid 89); 20 Mar 2019 15:50:39 -0000 Authentication-Results: sourceware.org; auth=none X-Spam-SWARE-Status: No, score=-1.9 required=5.0 tests=BAYES_00,RCVD_IN_DNSWL_NONE autolearn=ham version=3.3.1 spammy=HX-Languages-Length:607 X-HELO: mail-wm1-f68.google.com Received: from mail-wm1-f68.google.com (HELO mail-wm1-f68.google.com) (209.85.128.68) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Wed, 20 Mar 2019 15:50:37 +0000 Received: by mail-wm1-f68.google.com with SMTP id u10so18249987wmj.5 for ; Wed, 20 Mar 2019 08:50:37 -0700 (PDT) Return-Path: Received: from ?IPv6:2001:8a0:f913:f700:56ee:75ff:fe8d:232b? ([2001:8a0:f913:f700:56ee:75ff:fe8d:232b]) by smtp.gmail.com with ESMTPSA id t62sm3804661wmf.15.2019.03.20.08.50.34 (version=TLS1_2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Wed, 20 Mar 2019 08:50:34 -0700 (PDT) Subject: Re: [PATCH] Readline: Cleanup some warnings To: Eli Zaretskii References: <20190130085716.75179-1-alan.hayward@arm.com> <20190131075907.GA313@adacore.com> <3463805B-A8BF-4C20-ACE3-C21AE3F7DB62@arm.com> <20190201080533.GA31043@adacore.com> <877eejvfoq.fsf@tromey.com> <1549047248.2630.7.camel@skynet.be> <310315f8-62ab-2eff-042f-9f2ae9de07da@redhat.com> <87wokxtnlt.fsf@tromey.com> <83h8c1wdr5.fsf@gnu.org> <87imwex333.fsf@tromey.com> <711b6636-b02c-edb2-308d-5fddbf4c33a9@redhat.com> <83ftritydv.fsf@gnu.org> <3fc20d2b-5a49-928a-b474-f812f43a2c12@redhat.com> Cc: tom@tromey.com, gdb-patches@sourceware.org From: Pedro Alves Message-ID: Date: Wed, 20 Mar 2019 15:50:00 -0000 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:52.0) Gecko/20100101 Thunderbird/52.9.1 MIME-Version: 1.0 In-Reply-To: <3fc20d2b-5a49-928a-b474-f812f43a2c12@redhat.com> Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-SW-Source: 2019-03/txt/msg00432.txt.bz2 On 03/20/2019 03:46 PM, Pedro Alves wrote: > > (top-gdb) info signal-dispositions 2 > Number Name Description Disposition > 2 SIGINT Interrupt handle_sigint(int) in section .text of build-sys-readline/gdb/gdb To clarify here. "handle_sigint(int)" is the GDB handler for SIGINT. > > While with the bundled readline I get: > > (top-gdb) info signal-dispositions 2 > Number Name Description Disposition > 2 SIGINT Interrupt rl_signal_handler in section .text of build/gdb/gdb > While "rl_signal_handler" is the readline handler for SIGINT. Thanks, Pedro Alves