From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 2451 invoked by alias); 17 Aug 2005 01:10:41 -0000 Mailing-List: contact gdb-patches-help@sources.redhat.com; run by ezmlm Precedence: bulk List-Subscribe: List-Archive: List-Post: List-Help: , Sender: gdb-patches-owner@sources.redhat.com Received: (qmail 334 invoked by uid 22791); 17 Aug 2005 01:09:42 -0000 Received: from viper.snap.net.nz (HELO viper.snap.net.nz) (202.37.101.8) by sourceware.org (qpsmtpd/0.30-dev) with ESMTP; Wed, 17 Aug 2005 01:09:42 +0000 Received: from farnswood.snap.net.nz (p216-tnt1.snap.net.nz [202.124.110.216]) by viper.snap.net.nz (Postfix) with ESMTP id 1E397688FD6; Wed, 17 Aug 2005 13:09:39 +1200 (NZST) Received: by farnswood.snap.net.nz (Postfix, from userid 501) id 0620D62A99; Wed, 17 Aug 2005 02:12:16 +0100 (BST) From: Nick Roberts MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Message-ID: <17154.36592.176083.897331@farnswood.snap.net.nz> Date: Wed, 17 Aug 2005 03:18:00 -0000 To: Jim Ingham Cc: gdb-patches@sources.redhat.com Subject: Re: RFC: MI output during program execution X-SW-Source: 2005-08/txt/msg00196.txt.bz2 > Note that for a truly asynchronous target, what you get is: > (gdb) > -exec-continue > ^running > (gdb) > -exec-status > ^done,status="running" > (gdb) > -exec-interrupt > ^done,reason="signal-received",signal-name="SIGINT",signal- meaning="Interrupt",thread-id="1" > (gdb) > Or something like that... So in that case the ^running really is the > equivalent of the ^done... I don't really mind if it is ^running or *running, I just want GDB to issue notification when the inferior starts or stops running after a CLI command is executed. Currently I can't tell when to update the UI when such commands are issued through the GUD buffer. Daniel suggested this was a different case to breakpoint-changed or thread-changed but I think it requires a similar solution. Nick