From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 915 invoked by alias); 7 Jun 2006 19:01:47 -0000 Received: (qmail 787 invoked by uid 22791); 7 Jun 2006 19:01:46 -0000 X-Spam-Check-By: sourceware.org Received: from wx-out-0102.google.com (HELO wx-out-0102.google.com) (66.249.82.193) by sourceware.org (qpsmtpd/0.31) with ESMTP; Wed, 07 Jun 2006 19:01:42 +0000 Received: by wx-out-0102.google.com with SMTP id t12so179969wxc for ; Wed, 07 Jun 2006 12:01:41 -0700 (PDT) Received: by 10.70.103.15 with SMTP id a15mr1054919wxc; Wed, 07 Jun 2006 12:01:41 -0700 (PDT) Received: by 10.70.42.9 with HTTP; Wed, 7 Jun 2006 12:01:41 -0700 (PDT) Message-ID: Date: Wed, 07 Jun 2006 19:05:00 -0000 From: "Mitchell Fang" To: gdb@sourceware.org Subject: Remote monitor 'qCmd' command response MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline X-IsSubscribed: yes 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: 2006-06/txt/msg00043.txt.bz2 Hi, I was wondering if someone could clarify this part from the GDB manual: " Before the final result packet, the target may also respond with a number of intermediate 'Ooutput' console output packets." I'm trying to implement this intermediate response functionality and not having much success. I plan to use it to where I have a response like (gdb) monitor load Loading.... Loading.... load successful (gdb) Is this even possible? What happens right now is that I send 'OLoading...' and then gdb doesn't accept the other responses cause it thinks its the final result packet. Here's what is shows on the console: (gdb) monitor load 0Loading... (gdb) Here is the log: w $qRcmd,6c6f61642062696e203838382e62696e#a9 r + w - r w - r $4f4c6f6164696e672e2e2e0a#6b w + I'm not really sure whats going on and some help would be nice. Thanks Mitchell