From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 5443 invoked by alias); 14 Apr 2011 02:22:09 -0000 Received: (qmail 5434 invoked by uid 22791); 14 Apr 2011 02:22:08 -0000 X-SWARE-Spam-Status: No, hits=-1.5 required=5.0 tests=AWL,BAYES_00,SPF_SOFTFAIL,T_RP_MATCHES_RCVD X-Spam-Check-By: sourceware.org Received: from e8.ny.us.ibm.com (HELO e8.ny.us.ibm.com) (32.97.182.138) by sourceware.org (qpsmtpd/0.43rc1) with ESMTP; Thu, 14 Apr 2011 02:22:04 +0000 Received: from d01dlp01.pok.ibm.com (d01dlp01.pok.ibm.com [9.56.224.56]) by e8.ny.us.ibm.com (8.14.4/8.13.1) with ESMTP id p3E1uiDd008872 for ; Wed, 13 Apr 2011 21:56:44 -0400 Received: from d01relay07.pok.ibm.com (d01relay07.pok.ibm.com [9.56.227.147]) by d01dlp01.pok.ibm.com (Postfix) with ESMTP id BEA7E38C8038 for ; Wed, 13 Apr 2011 22:21:52 -0400 (EDT) Received: from d01av02.pok.ibm.com (d01av02.pok.ibm.com [9.56.224.216]) by d01relay07.pok.ibm.com (8.13.8/8.13.8/NCO v10.0) with ESMTP id p3E2M2b9258242 for ; Wed, 13 Apr 2011 22:22:02 -0400 Received: from d01av02.pok.ibm.com (loopback [127.0.0.1]) by d01av02.pok.ibm.com (8.14.4/8.13.1/NCO v10.0 AVout) with ESMTP id p3E2M28J025803 for ; Wed, 13 Apr 2011 23:22:02 -0300 Received: from [9.12.227.133] ([9.12.227.133]) by d01av02.pok.ibm.com (8.14.4/8.13.1/NCO v10.0 AVin) with ESMTP id p3E2M1TO025719 for ; Wed, 13 Apr 2011 23:22:01 -0300 Subject: [FYI][obvious] Rename print_exception_catchpoint. From: Thiago Jung Bauermann To: gdb-patches ml Content-Type: text/plain; charset="UTF-8" Date: Thu, 14 Apr 2011 02:22:00 -0000 Message-ID: <1302747712.3459.6.camel@hactar> Mime-Version: 1.0 Content-Transfer-Encoding: 7bit X-Content-Scanned: Fidelis XPS MAILER X-IsSubscribed: yes Mailing-List: contact gdb-patches-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: gdb-patches-owner@sourceware.org X-SW-Source: 2011-04/txt/msg00201.txt.bz2 Hi, Just committed the following. -- []'s Thiago Jung Bauermann IBM Linux Technology Center 2011-04-13 Thiago Jung Bauermann * breakpoint.c (print_exception_catchpoint): Rename to ... (print_it_exception_catchpoint): ... this. (gnu_v3_exception_catchpoint_ops): Update with new name for print_it_exception_catchpoint. diff --git a/gdb/breakpoint.c b/gdb/breakpoint.c index 9225d15..8ea6cc9 100644 --- a/gdb/breakpoint.c +++ b/gdb/breakpoint.c @@ -9472,7 +9472,7 @@ catch_exec_command_1 (char *arg, int from_tty, } static enum print_stop_action -print_exception_catchpoint (struct breakpoint *b) +print_it_exception_catchpoint (struct breakpoint *b) { int bp_temp, bp_throw; @@ -9563,7 +9563,7 @@ static struct breakpoint_ops gnu_v3_exception_catchpoint_ops = { NULL, /* remove */ NULL, /* breakpoint_hit */ NULL, /* resources_needed */ - print_exception_catchpoint, + print_it_exception_catchpoint, print_one_exception_catchpoint, NULL, /* print_one_detail */ print_mention_exception_catchpoint,