From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from eggs.gnu.org (eggs.gnu.org [IPv6:2001:470:142:3::10]) by sourceware.org (Postfix) with ESMTPS id C92AA385842C for ; Wed, 7 Feb 2024 17:01:36 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.4.2 sourceware.org C92AA385842C Authentication-Results: sourceware.org; dmarc=pass (p=none dis=none) header.from=gnu.org Authentication-Results: sourceware.org; spf=pass smtp.mailfrom=gnu.org ARC-Filter: OpenARC Filter v1.0.0 sourceware.org C92AA385842C Authentication-Results: server2.sourceware.org; arc=none smtp.remote-ip=2001:470:142:3::10 ARC-Seal: i=1; a=rsa-sha256; d=sourceware.org; s=key; t=1707325298; cv=none; b=KT/U16sFbViYPcmjdqba/AVnftDkQ7sQUe0YJH4lnvlU5FzPCp3mMQoJcDvmYMlXTYIiDrIf0kyVGnyvRKXIUfGuUOZb/+4uVfReftVuQkH2QIiQUNOQPHbgKCXe3oclmDGkAqV1Dfvg7GSAx7WxZbB127UdNjmwsQTqJdAaWyE= ARC-Message-Signature: i=1; a=rsa-sha256; d=sourceware.org; s=key; t=1707325298; c=relaxed/simple; bh=RmFMgTkoTfcz2/Qs3BJPkEZJLcC9adokM4ArZ2fmvNs=; h=DKIM-Signature:Date:From:To:Subject:Message-ID:MIME-Version; b=CWY57Re3O11/w+K1QHyel3t4sY5qzZ0IfJ0bAyCRd9xGu8AuJQcsg/7dgsfs5t0EQkOjSTiFRIr6UUJz5qJGG3caommIU4Vvb7F98ra4s9gJkgEZ81fBMN7RvCehuGsbaARe2s7MST4nG8MQezD6RV19pWPNQNwpfyCcEqWQkUU= ARC-Authentication-Results: i=1; server2.sourceware.org Received: from fencepost.gnu.org ([2001:470:142:3::e]) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1rXlIm-0002BS-5I; Wed, 07 Feb 2024 12:01:36 -0500 DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=gnu.org; s=fencepost-gnu-org; h=In-Reply-To:MIME-Version:References:Subject:To:From: Date; bh=RDIlqTzmMARMRR6tOVe1TPxjzbTq8CF9bLhHxtJhPN4=; b=D5WMYS72IwItRD744dCD pOKQm6LKgL7HF6fNqH1lWqIMoxtKkbAceDgR5EHzHMeyMaHAkzyvoMTEujNzi4KgSYVkEKw5Jl4Rz wgMp/SRqBTigwSigQe5j/OB63dMz+DgTEwM6dWEPtbNj0vAc9SNDgY9pkTQ2chYu9EudN/kFcR9eh vVZ37SFLoE1YyGYmH7UuW34XB8tinQ7mW+6owOMTgRfZnNxE/vGaqOccr7+Oq+lvla5S853TYHBBO tQh7H/Ikrcg4C/Nm4YK0uYQs33wpxZ8u9Ey6etSWcxTNCKud+Si+U9/+iUUTAjpiwjVr0FkGhgFlZ 6fpkGKCGVDPs4w==; Date: Wed, 7 Feb 2024 18:01:30 +0100 From: Samuel Thibault To: Simon Marchi Cc: Flavio Cruz , bug-hurd@gnu.org, gdb-patches@sourceware.org Subject: Re: [PATCH] Hurd port: update interface to match upstream and fix warnings. Message-ID: <20240207170130.rffgkvqqtkgnjxaa@begin> Mail-Followup-To: Simon Marchi , Flavio Cruz , bug-hurd@gnu.org, gdb-patches@sourceware.org References: <3057a492-37bd-450a-8675-26c92d7abd5b@simark.ca> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Disposition: inline Content-Transfer-Encoding: 8bit In-Reply-To: <3057a492-37bd-450a-8675-26c92d7abd5b@simark.ca> Organization: I am not organized User-Agent: NeoMutt/20170609 (1.8.3) X-Spam-Status: No, score=-2.8 required=5.0 tests=BAYES_00,DKIMWL_WL_HIGH,DKIM_SIGNED,DKIM_VALID,DKIM_VALID_AU,DKIM_VALID_EF,SPF_HELO_PASS,SPF_PASS,TXREP,T_SCC_BODY_TEXT_LINE autolearn=ham autolearn_force=no version=3.4.6 X-Spam-Checker-Version: SpamAssassin 3.4.6 (2021-04-09) on server2.sourceware.org List-Id: Simon Marchi, le mer. 07 févr. 2024 11:47:30 -0500, a ecrit: > On 2/7/24 01:53, Flavio Cruz wrote: > > We have recently updated the interface for raising exceptions to use > > long [1] and updated mach_port_t to be "unsigned int". This patches fixes > > those problems and will help us port GDB to Hurd x86_64. > > > > Tested on Hurd i686 and x86_64. > > > > [1] https://git.savannah.gnu.org/cgit/hurd/gnumach.git/tree/include/mach/exc.defs > > I take it that you are not too concerned with backwards compatibility > with previous versions of Hurd (compiling new GDBs on old Hurds)? We don't have any other 64bit version of the Hurd, and for the 32bit version this is a no-op. > If so, this is fine with me. > > Approved-By: Simon Marchi Thanks! Samuel