From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 116556 invoked by alias); 30 Aug 2017 22:06:27 -0000 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 Received: (qmail 116544 invoked by uid 89); 30 Aug 2017 22:06:27 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-1.9 required=5.0 tests=BAYES_00,RCVD_IN_DNSWL_NONE,SPF_PASS autolearn=ham version=3.3.2 spammy=Hx-languages-length:392 X-HELO: gproxy7-pub.mail.unifiedlayer.com Received: from gproxy7-pub.mail.unifiedlayer.com (HELO gproxy7-pub.mail.unifiedlayer.com) (70.40.196.235) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Wed, 30 Aug 2017 22:06:17 +0000 Received: from CMOut01 (unknown [10.0.90.82]) by gproxy7.mail.unifiedlayer.com (Postfix) with ESMTP id 03F22215D18 for ; Wed, 30 Aug 2017 16:06:16 -0600 (MDT) Received: from box522.bluehost.com ([74.220.219.122]) by CMOut01 with id 3a6C1w00B2f2jeq01a6Fl5; Wed, 30 Aug 2017 16:06:15 -0600 X-Authority-Analysis: v=2.2 cv=fJ5J5dSe c=1 sm=1 tr=0 a=GsOEXm/OWkKvwdLVJsfwcA==:117 a=GsOEXm/OWkKvwdLVJsfwcA==:17 a=KeKAF7QvOSUA:10 a=UljwIq1vdEEf_J_PVAMA:9 Received: from 174-16-124-214.hlrn.qwest.net ([174.16.124.214]:46366 helo=bapiya.localdomain) by box522.bluehost.com with esmtpsa (TLSv1.2:ECDHE-RSA-AES256-GCM-SHA384:256) (Exim 4.87) (envelope-from ) id 1dnB7k-003h0e-Kd for gdb-patches@sourceware.org; Wed, 30 Aug 2017 16:06:12 -0600 From: Tom Tromey To: gdb-patches@sourceware.org Subject: [RFA 0/3] some C++-ification in breakpoint.c Date: Wed, 30 Aug 2017 22:06:00 -0000 Message-Id: <20170830220610.19718-1-tom@tromey.com> X-BWhitelist: no X-Exim-ID: 1dnB7k-003h0e-Kd X-Source-Sender: 174-16-124-214.hlrn.qwest.net (bapiya.localdomain) [174.16.124.214]:46366 X-Source-Auth: tom+tromey.com X-Email-Count: 1 X-Source-Cap: ZWx5bnJvYmk7ZWx5bnJvYmk7Ym94NTIyLmJsdWVob3N0LmNvbQ== X-Local-Domain: yes X-SW-Source: 2017-08/txt/msg00533.txt.bz2 This series adds a bit more C++-ification to breakpoint.c. In particular it changes bpstats to be allocated with new, and changes them to have constructors and destructors; changes some code in breakpoint.c to use function_view; and then finally removes counted_command_line in favor of std::shared_ptr. Regression tested on the buildbot. Tom