From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 23564 invoked by alias); 18 Nov 2005 12:34:40 -0000 Received: (qmail 23540 invoked by uid 22791); 18 Nov 2005 12:34:37 -0000 Received: from main.gmane.org (HELO ciao.gmane.org) (80.91.229.2) by sourceware.org (qpsmtpd/0.30-dev) with ESMTP; Fri, 18 Nov 2005 12:34:37 +0000 Received: from list by ciao.gmane.org with local (Exim 4.43) id 1Ed5QA-0002Ep-JZ for gdb@sources.redhat.com; Fri, 18 Nov 2005 13:32:51 +0100 Received: from zigzag.lvk.cs.msu.su ([158.250.17.23]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Fri, 18 Nov 2005 13:32:50 +0100 Received: from ghost by zigzag.lvk.cs.msu.su with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Fri, 18 Nov 2005 13:32:50 +0100 To: gdb@sources.redhat.com From: Vladimir Prus Subject: Output from target in MI mode Date: Fri, 18 Nov 2005 12:34:00 -0000 Message-ID: Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7Bit User-Agent: KNode/0.8.2 Mailing-List: contact gdb-help@sourceware.org; run by ezmlm Precedence: bulk List-Subscribe: List-Archive: List-Post: List-Help: , Sender: gdb-owner@sourceware.org X-SW-Source: 2005-11/txt/msg00377.txt.bz2 Hi, the docs, in "MI Stream records", say: `"@" STRING-OUTPUT' The target output stream contains any textual output from the running target. However, when I compile and run the following command: #include int main() { printf("Hi\n"); return 0; } I see this: (gdb) -exec-run ^running (gdb) Hi *stopped,reason="exited-normally" (gdb) The output from target is not prepended by "@". Gdb version is 6.3. Is this a bug, or out-of-date docs, or I read the docs incorrectly? - Volodya