From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 14545 invoked by alias); 23 Jun 2003 18:52:58 -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 14464 invoked from network); 23 Jun 2003 18:52:56 -0000 Received: from unknown (HELO mx1.redhat.com) (66.187.233.31) by sources.redhat.com with SMTP; 23 Jun 2003 18:52:56 -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 h5NIquH00453 for ; Mon, 23 Jun 2003 14:52:56 -0400 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 h5NIquI12245 for ; Mon, 23 Jun 2003 14:52:56 -0400 Received: from localhost.redhat.com (romulus-int.sfbay.redhat.com [172.16.27.46]) by pobox.corp.redhat.com (8.11.6/8.11.6) with ESMTP id h5NIqtd09358 for ; Mon, 23 Jun 2003 14:52:55 -0400 Received: by localhost.redhat.com (Postfix, from userid 469) id 5AC762C987; Mon, 23 Jun 2003 14:59:44 -0400 (EDT) From: Elena Zannoni MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Message-ID: <16119.20000.166256.114352@localhost.redhat.com> Date: Mon, 23 Jun 2003 18:52:00 -0000 To: "Francois Ferrand" Cc: Subject: Re: GDB & asynchronous program execution on Windows/MingW In-Reply-To: <009301c33747$0267f940$0b1310ac@phoenix> References: <009301c33747$0267f940$0b1310ac@phoenix> X-SW-Source: 2003-06/txt/msg00457.txt.bz2 Francois Ferrand writes: > Hi, > > I am trying to debug my Windows program with GDB asynchronously (using > MingW32), so that I can interrupt execution at any time... However, it does > not seem to work. > Has anybody been able to do this ? Or is it not possible at all on > Windows/Mingw ? > > I am using GDB 5.1.1 for Windows, as shipped with MingW. > > Regards, > > -- > Francois Ferrand > The only really asyncronous target that has been implemented so far is the a variant of the remote target. (gdb) help target async Use a remote computer via a serial line, using a gdb-specific protocol. Specify the serial device it is connected to (e.g. /dev/ttya). elena