From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 7877 invoked by alias); 22 May 2015 17:46:17 -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 7861 invoked by uid 89); 22 May 2015 17:46:16 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-2.5 required=5.0 tests=AWL,BAYES_00,RCVD_IN_DNSWL_LOW,SPF_PASS,T_RP_MATCHES_RCVD autolearn=ham version=3.3.2 X-HELO: mail-oi0-f53.google.com Received: from mail-oi0-f53.google.com (HELO mail-oi0-f53.google.com) (209.85.218.53) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with (AES128-GCM-SHA256 encrypted) ESMTPS; Fri, 22 May 2015 17:46:11 +0000 Received: by oiww2 with SMTP id w2so19337823oiw.0 for ; Fri, 22 May 2015 10:46:09 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:mime-version:in-reply-to:references:date :message-id:subject:from:to:cc:content-type; bh=jZWyiceYDNpISx5fwoIuIIZCvnQDa6IEPHouw7VspZY=; b=FbDDyueqP1d/UeRqexy7K1Whg352CEZBsxDWS1I+c24fZjzpRJc9vUr3xAJMNNN0go oFKlQHTbB5hnCqa0bapxobVuVacXrxfjTurY2hQfKIbWUFbeS9IsP9ZxizUY4c4h70A+ GOmP4uD5QkDLbWc0YK13DjWk5Lt4YHT+0AHpfh8ZsC7RWZeviDJAvE7RdrqMAhCEXM1K RVzgvu3esZI1HY46s8sQr0OGDQFt9v12zryPHx8LXTra0MIvqdDslGR8dJ3DuqL/Vpqy ikWYhWg0/rmDjaQvPHG0NC9f+UnR8zEScV8w66/Tw78RIuXPxOciKR7//eiqHriBk4dl Ecvg== X-Gm-Message-State: ALoCoQkpnktJ/0XklzG4jmoGWRRj9TfQ23Q/wyBC5vwtjuIvfPGAQZ4DGr/BX9KPWicrM3laS/jV MIME-Version: 1.0 X-Received: by 10.182.44.199 with SMTP id g7mr7612799obm.28.1432316769249; Fri, 22 May 2015 10:46:09 -0700 (PDT) Received: by 10.182.89.99 with HTTP; Fri, 22 May 2015 10:46:09 -0700 (PDT) In-Reply-To: <86382ssrx7.fsf@gmail.com> References: <089e0160b1be9352da05162640cb@google.com> <86382ssrx7.fsf@gmail.com> Date: Fri, 22 May 2015 17:46:00 -0000 Message-ID: Subject: Re: [PATCH] Make file-based lookup more interruptable From: Doug Evans To: Yao Qi Cc: gdb-patches Content-Type: text/plain; charset=UTF-8 X-IsSubscribed: yes X-SW-Source: 2015-05/txt/msg00611.txt.bz2 On Tue, May 19, 2015 at 4:55 AM, Yao Qi wrote: > Doug Evans writes: > >> This patch makes, for example, "b 'foo.c':bar" more interruptable. > > Does 'interruptable' mean user can type ctrl-c to cancel the command > "b 'foo.c':bar" which may take 10 minutes? If so, this change is > visible to users, and do we need to add a NEWS entry? I'd classify this as being no different than a performance improvement. There already is a level of interruptability, the only change is in degree of responsiveness. We *can* start adding such things to NEWS, but we don't do so today. Before we start imposing this on everyone, we'll need to establish what does and does not qualify - I'm guessing we don't want to add a NEWS entry for every little performance improvement.