From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 23331 invoked by alias); 22 Apr 2003 18:37:19 -0000 Mailing-List: contact insight-help@sources.redhat.com; run by ezmlm Precedence: bulk List-Subscribe: List-Archive: List-Post: List-Help: , Sender: insight-owner@sources.redhat.com Received: (qmail 23322 invoked from network); 22 Apr 2003 18:37:15 -0000 Received: from unknown (HELO mm02snlnto.son.sandia.gov) (132.175.109.21) by sources.redhat.com with SMTP; 22 Apr 2003 18:37:15 -0000 Received: from 132.175.109.4 by MM01SNLNTO.son.sandia.gov with ESMTP ( Tumbleweed MMS SMTP Relay 01 (MMS v5.5.0)); Tue, 22 Apr 2003 12:37:10 -0600 Received: from ES01SNLNT.sandia.gov (es01snlnt.sandia.gov [134.253.130.4]) by mailgate2.sandia.gov (8.12.9/8.12.9) with ESMTP id h3MIb9bo014930 for ; Tue, 22 Apr 2003 12: 37:09 -0600 (MDT) Received: by es01snlnt.sandia.gov with Internet Mail Service ( 5.5.2653.19) id ; Tue, 22 Apr 2003 12:37:10 -0600 Message-ID: <71251C7D5FB1D2119C8F0008C7A44ED103792011@es07snlnt.sandia.gov> From: "Liang, James" To: "'insight@sources.redhat.com'" Subject: RE: Developing for Insight Date: Tue, 22 Apr 2003 18:37:00 -0000 MIME-Version: 1.0 X-WSS-ID: 12BB545C361907-01-01 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: 7bit X-SW-Source: 2003-q2/txt/msg00029.txt.bz2 To clarify, the only thing that Insight displays in the code Window is the very first executable line of my main function in main.c -----Original Message----- From: Liang, James Sent: Tuesday, April 22, 2003 12:18 PM To: 'Keith Seitz' Cc: 'insight@sources.redhat.com' Subject: RE: Developing for Insight Ok... -----Original Message----- From: Keith Seitz [mailto:keiths@redhat.com] Sent: Tuesday, April 22, 2003 11:54 AM To: Liang, James Cc: 'insight@sources.redhat.com' Subject: RE: Developing for Insight On Tue, 2003-04-22 at 09:53, Liang, James wrote: > Actually, more than just the up and down buttons don't work. That was just > an example. > I mean, I can't get Insight to track where I am in the code even though the > list command in the console works. Open a console window and get your target at a breakpoint somewhere (like main). The procedure will look something like: (gdb) file FOO (gdb) set remotebaud XXXX [if necessary] (gdb) target BLAH [if necessary] (gdb) load [if necessary] (gdb) break SOMEWHERE (gdb) [run or continue] Now type: (gdb) f (gdb) list (gdb) tk gdb_loc Send the results of these last three commands to the list. This is just too goofy. Keith