From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 6010 invoked by alias); 24 Aug 2002 17:28:51 -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 6003 invoked from network); 24 Aug 2002 17:28:50 -0000 Received: from unknown (HELO redhat.com) (66.30.22.225) by 209.249.29.67 with SMTP; 24 Aug 2002 17:28:50 -0000 Received: by redhat.com (Postfix, from userid 201) id 5049F1B884; Sat, 24 Aug 2002 13:27:51 -0400 (EDT) Date: Sat, 24 Aug 2002 10:28:00 -0000 From: Christopher Faylor To: gdb@sources.redhat.com Subject: Re: Debugging promgram without debugging info Message-ID: <20020824172751.GA26276@redhat.com> Reply-To: gdb@sources.redhat.com Mail-Followup-To: gdb@sources.redhat.com References: <20020823003620.7164.qmail@web21301.mail.yahoo.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20020823003620.7164.qmail@web21301.mail.yahoo.com> User-Agent: Mutt/1.3.23.1i X-SW-Source: 2002-08/txt/msg00315.txt.bz2 [NOTE: Reply-To set to gdb@sources.redhat.com] On Thu, Aug 22, 2002 at 05:36:20PM -0700, Rosen Georgiev wrote: >I think the only problem left unsolved is how to make the program >(without debugging info) that loads the DLL to stop at some time after >loading it. The "catch load" isn't implemented and it's the only way i >can think of. It should be easy enough to implement on Windows. Take a look at win32-nat.c. handle_load_dll. Adding something there should be feasible. cgf