From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 46452 invoked by alias); 25 Jul 2018 17:49:38 -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 44846 invoked by uid 89); 25 Jul 2018 17:49:26 -0000 Authentication-Results: sourceware.org; auth=none X-Spam-SWARE-Status: No, score=-1.9 required=5.0 tests=BAYES_00,SPF_PASS autolearn=ham version=3.3.2 spammy=Notify, notified, HContent-Transfer-Encoding:8bit X-HELO: sesbmg23.ericsson.net Received: from sesbmg23.ericsson.net (HELO sesbmg23.ericsson.net) (193.180.251.37) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Wed, 25 Jul 2018 17:49:25 +0000 DKIM-Signature: v=1; a=rsa-sha256; d=ericsson.com; s=mailgw201801; c=relaxed/simple; q=dns/txt; i=@ericsson.com; t=1532540963; h=From:Sender:Reply-To:Subject:Date:Message-ID:To:CC:MIME-Version:Content-Type: Content-Transfer-Encoding:Content-ID:Content-Description:Resent-Date:Resent-From: Resent-Sender:Resent-To:Resent-Cc:Resent-Message-ID:In-Reply-To:References:List-Id: List-Help:List-Unsubscribe:List-Subscribe:List-Post:List-Owner:List-Archive; bh=/rL4TBejhix2YXoIu32SzMthVwhXUUCJRzRfIsgo4u0=; b=KGwRItEZSU44yOugot4HCUQNuR/o2/vr7WDIMUmpBS6LKKSnfVj2XlJosyjNDHd5 eqNLWC1EBL962AhnLAhjEokpLcMQjYJ2RASJePGSVb7fi/xsXIgxOPDlCkLhPOqf t8gajTOefYRP+oVZOXY0aUJVNOWkm8yHACh3Z2r2Bek=; Received: from ESESSMB504.ericsson.se (Unknown_Domain [153.88.183.122]) by sesbmg23.ericsson.net (Symantec Mail Security) with SMTP id E0.FA.27833.328B85B5; Wed, 25 Jul 2018 19:49:23 +0200 (CEST) Received: from ESESSMB504.ericsson.se (153.88.183.122) by ESESSMB504.ericsson.se (153.88.183.122) with Microsoft SMTP Server (version=TLS1_2, cipher=TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA256_P256) id 15.1.1466.3; Wed, 25 Jul 2018 19:49:22 +0200 Received: from NAM04-SN1-obe.outbound.protection.outlook.com (153.88.183.157) by ESESSMB504.ericsson.se (153.88.183.165) with Microsoft SMTP Server (version=TLS1_2, cipher=TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA256_P256) id 15.1.1466.3 via Frontend Transport; Wed, 25 Jul 2018 19:49:22 +0200 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=ericsson.com; s=selector1; h=From:Date:Subject:Message-ID:Content-Type:MIME-Version:X-MS-Exchange-SenderADCheck; bh=HdG9QeagjP7Axysvu4IgVwNqR8/ib6dfAO5eDX0zzzg=; b=d6iFE8AOMqJyTPqvH10/xleHmj9IULaKY7N10CG6VGXbPEMFhJNTKDGc2CGBURqeA17kxr8s5hqua1dyIprprpjLAO6XBN2OkgQ3STPgSnQxRAky+jR410hXTzPhZTJ3+aUleg9TMtFJ1+7fyE7Q0sSCe8X/78NAnfLQ16UDZzA= Authentication-Results: spf=none (sender IP is ) smtp.mailfrom=simon.marchi@ericsson.com; Received: from [10.0.0.110] (192.222.164.54) by SN6PR15MB2399.namprd15.prod.outlook.com (2603:10b6:805:24::19) with Microsoft SMTP Server (version=TLS1_2, cipher=TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384) id 15.20.973.22; Wed, 25 Jul 2018 17:49:20 +0000 Subject: Re: [PATCH v2] Notify about breakpoint modification when enabling/disabling single location To: Simon Marchi , Jan Vrany CC: References: <20180531085633.7830-1-jan.vrany@fit.cvut.cz> From: Simon Marchi Message-ID: <74832de3-1d81-af5e-3c59-22657b24b3ae@ericsson.com> Date: Wed, 25 Jul 2018 17:49: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: Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit Return-Path: simon.marchi@ericsson.com Received-SPF: None (protection.outlook.com: ericsson.com does not designate permitted sender hosts) X-IsSubscribed: yes X-SW-Source: 2018-07/txt/msg00697.txt.bz2 On 2018-06-26 11:11 AM, Simon Marchi wrote: > On 2018-05-31 04:56, Jan Vrany wrote: >> When a single breakpoint location enableness was modified by a CLI command, >> observers were not notified about it. This issue is now fixed. >> >> gdb/ChangeLog: >> >>     * breakpoint.c (enable_disable_bp_num_loc): Notify observers. >> >> gdb/testsuite/ChangeLog: >> >>     * gdb.mi/mi-breakpoint-location-ena-dis.cc: New file. >>     * gdb.mi/mi-breakpoint-location-ena-dis.exp: New file. > > LGTM, thanks. > > Simon I pushed this patch, now that Jan now has a valid copyright assignment. Simon