From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 0) id 131F4393742A; Fri, 20 Mar 2020 19:30:21 +0000 (GMT) Resent-From: Christopher Faylor Resent-Date: Fri, 20 Mar 2020 19:30:21 +0000 Resent-Message-ID: <20200320193021.GA39542@server2.sourceware.org> Resent-To: gdb-patches@sourceware.org Received: from gateway34.websitewelcome.com (gateway34.websitewelcome.com [192.185.150.114]) by sourceware.org (Postfix) with ESMTPS id 3EECC385F02A for ; Fri, 20 Mar 2020 18:50:15 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.3.2 sourceware.org 3EECC385F02A Authentication-Results: sourceware.org; dmarc=none (p=none dis=none) header.from=tromey.com Authentication-Results: sourceware.org; spf=fail smtp.mailfrom=tom@tromey.com Received: from cm10.websitewelcome.com (cm10.websitewelcome.com [100.42.49.4]) by gateway34.websitewelcome.com (Postfix) with ESMTP id 76D0A117372 for ; Fri, 20 Mar 2020 13:50:14 -0500 (CDT) Received: from box5379.bluehost.com ([162.241.216.53]) by cmsmtp with SMTP id FMikjYrrGEfyqFMikjYgnH; Fri, 20 Mar 2020 13:50:14 -0500 X-Authority-Reason: nr=8 DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=tromey.com; s=default; h=Content-Type:MIME-Version:Message-ID:In-Reply-To:Date: References:Subject:Cc:To:From:Sender:Reply-To:Content-Transfer-Encoding: Content-ID:Content-Description:Resent-Date:Resent-From:Resent-Sender: Resent-To:Resent-Cc:Resent-Message-ID:List-Id:List-Help:List-Unsubscribe: List-Subscribe:List-Post:List-Owner:List-Archive; bh=vyCw0LrTRqpvuuwR4l8EphkUzaaY8w8FdTon6bSTOdI=; b=XBUBGfdPMBiMo5EHKqnMIgsZMx f2lVj6aZD+N/vbe5u/v4kQovyA1sH9oLve+O0fz8B4qE1sxnY+HKcFLsU3XjZgE292o4u0Tok7XQc +TXRhfnuwrL7C+Bl5PphlShfb; Received: from 97-118-117-21.hlrn.qwest.net ([97.118.117.21]:44968 helo=murgatroyd) by box5379.bluehost.com with esmtpsa (TLSv1.2:ECDHE-RSA-AES256-GCM-SHA384:256) (Exim 4.92) (envelope-from ) id 1jFMik-00229T-8s; Fri, 20 Mar 2020 12:50:14 -0600 From: Tom Tromey To: Kamil Rytarowski Cc: Tom Tromey , gdb-patches@sourceware.org Subject: Re: [PATCH] Implement "info proc mappings" for NetBSD References: <20200316173424.25375-1-n54@gmx.com> <875zezm421.fsf@tromey.com> <2b16c08b-330f-1aa8-7c69-c14774847047@gmx.com> X-Attribution: Tom Date: Fri, 20 Mar 2020 12:50:13 -0600 In-Reply-To: <2b16c08b-330f-1aa8-7c69-c14774847047@gmx.com> (Kamil Rytarowski's message of "Fri, 20 Mar 2020 17:58:18 +0100") Message-ID: <87eetmlv2y.fsf@tromey.com> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/28.0.50 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain X-BeenThere: gdb-patches@sourceware.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Gdb-patches mailing list List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 20 Mar 2020 19:30:21 -0000 >>>>> "Kamil" == Kamil Rytarowski writes: Kamil> I see. I prefer to keep this called obfd, as it matches the FreeBSD code Kamil> more closely. If we want to rename it, we shall do it also in FreeBSD. Well, that FreeBSD code is wrong too... >> What if they stop matching? Kamil> Not a concern. Kamil> If that will ever change, it will be patched, same as the other Kamil> existing NetBSD support. How will cross debugging to different versions work in this situation? Kamil> I prefer to keep similarity with FreeBSD. If we want to change it, Kamil> FreeBSD shall be changed too. ... Kamil> I don't have chance to work or test on FreeBSD myself so I defer Kamil> refactoring it into future. It sounds like maybe FreeBSD isn't as maintained? Unless the two need to share a lot of code, it seems like it would be better to do things as well as possible in the maintained code; and let the other code alone. Tom