From patchwork Thu Oct 22 19:58:37 2015 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Antoine Tremblay X-Patchwork-Id: 9336 Received: (qmail 119840 invoked by alias); 22 Oct 2015 19:58:59 -0000 Mailing-List: contact gdb-patches-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Unsubscribe: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: gdb-patches-owner@sourceware.org Delivered-To: mailing list gdb-patches@sourceware.org Received: (qmail 119777 invoked by uid 89); 22 Oct 2015 19:58:59 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-1.7 required=5.0 tests=AWL, BAYES_00, SPF_PASS autolearn=ham version=3.3.2 X-HELO: usevmg21.ericsson.net Received: from usevmg21.ericsson.net (HELO usevmg21.ericsson.net) (198.24.6.65) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with (AES256-SHA encrypted) ESMTPS; Thu, 22 Oct 2015 19:58:57 +0000 Received: from EUSAAHC005.ericsson.se (Unknown_Domain [147.117.188.87]) by usevmg21.ericsson.net (Symantec Mail Security) with SMTP id C7.5C.26730.133D8265; Thu, 22 Oct 2015 14:14:42 +0200 (CEST) Received: from elxa4wqvvz1.dyn.mo.ca.am.ericsson.se (147.117.188.8) by smtps-am.internal.ericsson.com (147.117.188.87) with Microsoft SMTP Server (TLS) id 14.3.248.2; Thu, 22 Oct 2015 15:58:45 -0400 From: Antoine Tremblay To: CC: Antoine Tremblay Subject: [PATCH 3/3] Remove set_breakpoint_data definition in GDBServer. Date: Thu, 22 Oct 2015 15:58:37 -0400 Message-ID: <1445543917-16839-4-git-send-email-antoine.tremblay@ericsson.com> In-Reply-To: <1445543917-16839-1-git-send-email-antoine.tremblay@ericsson.com> References: <1445543917-16839-1-git-send-email-antoine.tremblay@ericsson.com> MIME-Version: 1.0 X-IsSubscribed: yes This patch removes the now unused set_breakpoint_data function from mem_break.h gdb/gdbserver/ChangeLog: * mem-break.h (set_breakpoint_data): Remove. --- gdb/gdbserver/mem-break.h | 5 ----- 1 file changed, 5 deletions(-) diff --git a/gdb/gdbserver/mem-break.h b/gdb/gdbserver/mem-break.h index fa9d300..d199cc4 100644 --- a/gdb/gdbserver/mem-break.h +++ b/gdb/gdbserver/mem-break.h @@ -194,11 +194,6 @@ void check_mem_read (CORE_ADDR mem_addr, unsigned char *buf, int mem_len); void check_mem_write (CORE_ADDR mem_addr, unsigned char *buf, const unsigned char *myaddr, int mem_len); -/* Set the byte pattern to insert for memory breakpoints. This function - must be called before any breakpoints are set. */ - -void set_breakpoint_data (const unsigned char *bp_data, int bp_len); - /* Delete all breakpoints. */ void delete_all_breakpoints (void);