From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 22259 invoked by alias); 7 Feb 2003 20:29:38 -0000 Mailing-List: contact gdb-help@sources.redhat.com; run by ezmlm Precedence: bulk List-Subscribe: List-Archive: List-Post: List-Help: , Sender: gdb-owner@sources.redhat.com Received: (qmail 22251 invoked from network); 7 Feb 2003 20:29:38 -0000 Received: from unknown (HELO mx1.redhat.com) (172.16.49.200) by 172.16.49.205 with SMTP; 7 Feb 2003 20:29:38 -0000 Received: from int-mx1.corp.redhat.com (int-mx1.corp.redhat.com [172.16.52.254]) by mx1.redhat.com (8.11.6/8.11.6) with ESMTP id h17KTcf27700 for ; Fri, 7 Feb 2003 15:29:38 -0500 Received: from pobox.corp.redhat.com (pobox.corp.redhat.com [172.16.52.156]) by int-mx1.corp.redhat.com (8.11.6/8.11.6) with ESMTP id h17KTca11329; Fri, 7 Feb 2003 15:29:38 -0500 Received: from [150.1.200.14] (vpn50-66.rdu.redhat.com [172.16.50.66]) by pobox.corp.redhat.com (8.11.6/8.11.6) with ESMTP id h17KTb421863; Fri, 7 Feb 2003 15:29:37 -0500 Subject: Re: GDB/MI & CLI commands From: Keith Seitz To: Bob Rossi Cc: gdb@sources.redhat.com In-Reply-To: <20030207151039.GD7980@white> References: <20030207145557.GC7980@white> <20030207151039.GD7980@white> Content-Type: text/plain Organization: Message-Id: <1044650036.1857.15.camel@lindt.uglyboxes.com> Mime-Version: 1.0 Date: Fri, 07 Feb 2003 20:29:00 -0000 Content-Transfer-Encoding: 7bit X-SW-Source: 2003-02/txt/msg00157.txt.bz2 On Fri, 2003-02-07 at 07:10, Bob Rossi wrote: > However, I would like to confirm that GDB/MI is supposed to > accept CLI commands. It does for now, but this behavior is only temporary. It was used as a stop-gap for commands that are not yet implemented (from mi-main.c): case CLI_COMMAND: /* A CLI command was read from the input stream */ /* This will be removed as soon as we have a complete set of mi commands */ Note that CLI commands read in via MI (not via -interpreter-exec) will have MI output semantics. Keith