From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 22536 invoked by alias); 7 Mar 2012 01:08:16 -0000 Mailing-List: contact archer-help@sourceware.org; run by ezmlm Sender: Precedence: bulk List-Post: List-Help: List-Subscribe: List-Id: Received: (qmail 22527 invoked by uid 22791); 7 Mar 2012 01:08:15 -0000 X-SWARE-Spam-Status: No, hits=-6.3 required=5.0 tests=AWL,BAYES_00,RCVD_IN_DNSWL_HI,SPF_HELO_PASS,T_RP_MATCHES_RCVD X-Spam-Check-By: sourceware.org Message-ID: <4F56B4D5.4070700@redhat.com> Date: Wed, 07 Mar 2012 01:08:00 -0000 From: Keith Seitz User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:9.0) Gecko/20111222 Thunderbird/9.0 MIME-Version: 1.0 To: Joel Brobecker CC: archer@sourceware.org Subject: Re: [Archer] Stop the Insanity! Linespec Rewrite References: <4F501EC1.3050104@redhat.com> <20120302190658.GH2867@adacore.com> <4F514E30.7070400@redhat.com> <20120306173945.GP2867@adacore.com> <4F564C6F.60001@redhat.com> <4F56671E.4000905@redhat.com> <20120306215019.GQ2867@adacore.com> <20120307001119.GU2867@adacore.com> In-Reply-To: <20120307001119.GU2867@adacore.com> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-SW-Source: 2012-q1/txt/msg00025.txt.bz2 On 03/06/2012 04:11 PM, Joel Brobecker wrote: >> I do not think so. That was fast! I will make sure to update my >> sources and test again ASAP, hopefully this evening or tomorrow. > > And I can now confirm that all issues detected by our testsuite > have been taken care of without introducing new regressions. Hey, that's great news. Thank you for all your help with testing! > So, the only change of behavior is the fact that the breakpoint > command now accepts the "TASK" keyword in addition to "task". I'm afraid I don't understand. As far as I can tell, CVS HEAD and archer-keiths-linespec-rewrite behave identically. The output is exactly the same: $ gdb -nx -q gdb Reading symbols from /home/keiths/sources/gdb/git/virgin/linux/gdb/gdb...done. (gdb) b main task 3 Cannot inspect Ada tasks when program is not running (gdb) b main TASK 3 Function "main TASK 3" not defined. Make breakpoint pending on future shared library load? (y or [n]) n (gdb) b main Breakpoint 1 at 0x487143: file ../../gdb/gdb/gdb.c, line 29. (gdb) r Starting program: /home/keiths/sources/gdb/git/virgin/linux/gdb/gdb [Thread debugging using libthread_db enabled] Using host libthread_db library "/lib64/libthread_db.so.1". Breakpoint 1, main (argc=1, argv=0x7fffffffe0a8) at ../../gdb/gdb/gdb.c:29 29 memset (&args, 0, sizeof args); (gdb) b main task 3 Unknown task 3. (gdb) b main TASK 3 Function "main TASK 3" not defined. Make breakpoint pending on future shared library load? (y or [n]) n (gdb) Am I using this incorrectly? Keith