From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 1336 invoked by alias); 30 Jun 2004 15:21:04 -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 1315 invoked from network); 30 Jun 2004 15:21:03 -0000 Received: from unknown (HELO hub.ott.qnx.com) (209.226.137.76) by sourceware.org with SMTP; 30 Jun 2004 15:21:03 -0000 Received: from smtp.ott.qnx.com (smtp.ott.qnx.com [10.0.2.158]) by hub.ott.qnx.com (8.9.3/8.9.3) with ESMTP id KAA06449; Wed, 30 Jun 2004 10:41:47 -0400 Received: from [10.4.2.2] ([10.4.2.2]) by smtp.ott.qnx.com (8.8.8/8.6.12) with ESMTP id LAA04452; Wed, 30 Jun 2004 11:21:02 -0400 Message-ID: <40E2DAB0.7030003@qnx.com> Date: Wed, 30 Jun 2004 16:04:00 -0000 From: Kris Warkentin User-Agent: Mozilla Thunderbird 0.7 (Windows/20040616) MIME-Version: 1.0 To: Roland Zerek CC: gdb@sources.redhat.com Subject: Re: Breakpoints in the library code References: <40E29098.4040207@poczta.fm> <40E2B0FD.6050907@qnx.com> <40E2B3B6.6070802@poczta.fm> <40E2C044.2020704@qnx.com> <40E2C6CE.4070703@poczta.fm> In-Reply-To: <40E2C6CE.4070703@poczta.fm> Content-Type: text/plain; charset=ISO-8859-2; format=flowed Content-Transfer-Encoding: 8bit X-SW-Source: 2004-06/txt/msg00298.txt.bz2 Roland Zerek wrote: > U¿ytkownik Kris Warkentin napisa³: > >> It's possible that the symbols are not loaded. After stopping within >> the program, type 'info shared' to see if the symbol table is loaded >> for the dll. If not, you can type 'shared' to load them. > > > Well, libraries are loaded at the beginning - info shared says that. Any > other ideas, please??? Hmm. Well, if it's not recognizing the name of the method, you might want to try setting the breakpoint by filename:line number. (ie foo.cc:73). If that works, then when you hit the breakpoint, you can do a backtrace and see what gdb thinks the name of the method is. cheers, Kris