From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 5790 invoked by alias); 17 Jul 2006 11:31:56 -0000 Received: (qmail 5742 invoked by uid 22791); 17 Jul 2006 11:31:55 -0000 X-Spam-Check-By: sourceware.org Received: from lon-del-02.spheriq.net (HELO lon-del-02.spheriq.net) (195.46.50.98) by sourceware.org (qpsmtpd/0.31) with ESMTP; Mon, 17 Jul 2006 11:31:53 +0000 Received: from lon-out-03.spheriq.net ([195.46.50.131]) by lon-del-02.spheriq.net with ESMTP id k6HBVowe006914 for ; Mon, 17 Jul 2006 11:31:50 GMT Received: from lon-cus-02.spheriq.net (lon-cus-02.spheriq.net [195.46.50.38]) by lon-out-03.spheriq.net with ESMTP id k6HBVoQn030521 for ; Mon, 17 Jul 2006 11:31:50 GMT Received: from beta.dmz-eu.st.com (beta.dmz-eu.st.com [164.129.1.35]) by lon-cus-02.spheriq.net with ESMTP id k6HBVgK6025601 (version=TLSv1/SSLv3 cipher=EDH-RSA-DES-CBC3-SHA bits=168 verify=OK) for ; Mon, 17 Jul 2006 11:31:47 GMT Received: from zeta.dmz-eu.st.com (ns2.st.com [164.129.230.9]) by beta.dmz-eu.st.com (STMicroelectronics) with ESMTP id BF8ECDA42 for ; Mon, 17 Jul 2006 11:31:41 +0000 (GMT) Received: from mail1.cro.st.com (mail1.cro.st.com [164.129.40.131]) by zeta.dmz-eu.st.com (STMicroelectronics) with ESMTP id 708DA4759E for ; Mon, 17 Jul 2006 11:31:41 +0000 (GMT) Received: from st.com (crx1177.cro.st.com [164.129.47.77]) by mail1.cro.st.com (MOS 3.5.8-GR) with ESMTP id CHZ47293 (AUTH "denis pilat"); Mon, 17 Jul 2006 13:31:39 +0200 (CEST) Message-ID: <44BB751B.10608@st.com> Date: Mon, 17 Jul 2006 11:31:00 -0000 From: Denis PILAT User-Agent: Mozilla/5.0 (X11; U; SunOS sun4u; en-US; rv:1.0.1) Gecko/20020920 Netscape/7.0 MIME-Version: 1.0 To: gdb-patches@sources.redhat.com Subject: [cosmetic-patch] missing declaration in monitor.c Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit X-IsSubscribed: yes Mailing-List: contact gdb-patches-help@sourceware.org; run by ezmlm Precedence: bulk List-Subscribe: List-Archive: List-Post: List-Help: , Sender: gdb-patches-owner@sourceware.org X-SW-Source: 2006-07/txt/msg00198.txt.bz2 monitor_insert_breakpoint and monitor_remove_breakpoint used to be declared with other static function. -- Denis Index: monitor.c =================================================================== --- monitor.c (revision 486) +++ monitor.c (working copy) @@ -85,6 +85,8 @@ static int monitor_xfer_memory (CORE_ADD struct mem_attrib *attrib, struct target_ops *target); static void monitor_files_info (struct target_ops *ops); +static int monitor_insert_breakpoint (struct bp_target_info *bp_tgt); +static int monitor_remove_breakpoint (struct bp_target_info *bp_tgt); static void monitor_kill (void); static void monitor_load (char *file, int from_tty); static void monitor_mourn_inferior (void);