From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 16318 invoked by alias); 19 Jan 2005 21:14:24 -0000 Mailing-List: contact gdb-patches-help@sources.redhat.com; run by ezmlm Precedence: bulk List-Subscribe: List-Archive: List-Post: List-Help: , Sender: gdb-patches-owner@sources.redhat.com Received: (qmail 16086 invoked from network); 19 Jan 2005 21:14:14 -0000 Received: from unknown (HELO mx1.redhat.com) (66.187.233.31) by sourceware.org with SMTP; 19 Jan 2005 21:14:14 -0000 Received: from int-mx1.corp.redhat.com (int-mx1.corp.redhat.com [172.16.52.254]) by mx1.redhat.com (8.12.11/8.12.11) with ESMTP id j0JLE8qE031389 for ; Wed, 19 Jan 2005 16:14:14 -0500 Received: from localhost.redhat.com (vpn50-31.rdu.redhat.com [172.16.50.31]) by int-mx1.corp.redhat.com (8.11.6/8.11.6) with ESMTP id j0JLE8O14886; Wed, 19 Jan 2005 16:14:08 -0500 Received: from [127.0.0.1] (localhost.localdomain [127.0.0.1]) by localhost.redhat.com (Postfix) with ESMTP id DADD47D79; Wed, 19 Jan 2005 16:14:03 -0500 (EST) Message-ID: <41EECD98.7030202@gnu.org> Date: Wed, 19 Jan 2005 21:14:00 -0000 From: Andrew Cagney User-Agent: Mozilla Thunderbird 0.8 (X11/20041020) MIME-Version: 1.0 To: Eli Zaretskii Cc: gdb-patches@sources.redhat.com Subject: Re: [patch/rfc] Deprecate throw_reason References: <41ED77F4.3080902@gnu.org> <01c4fda5$Blat.v2.2.2$f0668be0@zahav.net.il> In-Reply-To: <01c4fda5$Blat.v2.2.2$f0668be0@zahav.net.il> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-SW-Source: 2005-01/txt/msg00209.txt.bz2 Eli Zaretskii wrote: >>Date: Tue, 18 Jan 2005 15:56:20 -0500 >>From: Andrew Cagney >> >>Index: breakpoint.c >>=================================================================== >>RCS file: /cvs/src/src/gdb/breakpoint.c,v >>retrieving revision 1.195 >>diff -p -u -r1.195 breakpoint.c >>--- breakpoint.c 18 Jan 2005 17:04:27 -0000 1.195 >>+++ breakpoint.c 18 Jan 2005 20:40:05 -0000 >>@@ -5144,7 +5144,7 @@ break_command_1 (char *arg, int flag, in >> error. */ >> >> if (pending_break_support == AUTO_BOOLEAN_FALSE) >>- throw_reason (RETURN_ERROR); >>+ deprecated_throw_reason (RETURN_ERROR); > > > It's IMHO not nice that we have deprecated_something in a core-GDB > source file such as breakpoint.c. Can we replace this with a > party-line code? Yes, we most certainly can, and will. But in the interum, I'll check this in. Andrew >>--- utils.c 14 Jan 2005 21:34:36 -0000 1.145 >>+++ utils.c 18 Jan 2005 20:40:07 -0000 > > > Same here. >