From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 27849 invoked by alias); 5 Dec 2002 18:56:26 -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 27815 invoked from network); 5 Dec 2002 18:56:25 -0000 Received: from unknown (HELO apogee.com) (65.84.10.210) by sources.redhat.com with SMTP; 5 Dec 2002 18:56:25 -0000 Received: by gateway.apogee.com id <119042>; Thu, 5 Dec 2002 10:37:25 -0800 Message-Id: <02Dec5.103725pst.119042@gateway.apogee.com> From: "Stanley Gambarin" To: , References: <200212041644.gB4GigY20676@duracef.shout.net> <200212042225.gB4MPEq04369@siglo21.dis.ulpgc.es> Subject: Re: Pipe question (mmm) Date: Thu, 05 Dec 2002 10:56:00 -0000 MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 X-MSMail-Priority: Normal X-MimeOLE: Produced By Microsoft MimeOLE V5.50.4133.2400 X-SW-Source: 2002-12/txt/msg00090.txt.bz2 it is unlikely that sending \"quit\\n\" down to GDB will work, since it will take some time for GDB to reply to 'quit' command. The solution that work for me (in a very similar situation), is to issue following commands: > set confirm off > quit The 'confirm' command is used to confirm dangerous operations; disabling it will tell GDB to just go ahead and quit (killing inferior, if there is one present). Hope that helps, -- stanley ----- Original Message ----- From: To: Sent: Wednesday, December 04, 2002 2:25 PM Subject: Re: Pipe question (mmm) > Thanks again to Eli (I have removed the bug of strcat and the constant > string) and Michael C for their effort. > > It\'s important to realize that gdb asks to confirm in several points of > its execution (I will consider it from now). But I was using a very > short code and this prompt didn\'t appear (and, as I said, GDB is ending > properly). I wonder if it can be a problem with my development GUI > (Kylix 3.0 Open Edition) or something I may be missing. Well, if anyone > knows something new, don\'t hesitate to help me! > > Ciao! >