From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from simark.ca by simark.ca with LMTP id NkWeBJR14l89AwAAWB0awg (envelope-from ) for ; Tue, 22 Dec 2020 17:39:16 -0500 Received: by simark.ca (Postfix, from userid 112) id F28211F0AA; Tue, 22 Dec 2020 17:39:15 -0500 (EST) X-Spam-Checker-Version: SpamAssassin 3.4.2 (2018-09-13) on simark.ca X-Spam-Level: X-Spam-Status: No, score=-1.1 required=5.0 tests=DKIM_SIGNED,DKIM_VALID, DKIM_VALID_AU,MAILING_LIST_MULTI,URIBL_BLOCKED autolearn=ham autolearn_force=no version=3.4.2 Received: from sourceware.org (server2.sourceware.org [8.43.85.97]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits) server-digest SHA256) (No client certificate requested) by simark.ca (Postfix) with ESMTPS id 34E391E552 for ; Tue, 22 Dec 2020 17:39:15 -0500 (EST) Received: from server2.sourceware.org (localhost [IPv6:::1]) by sourceware.org (Postfix) with ESMTP id 8C2B6387086B; Tue, 22 Dec 2020 22:39:14 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 8C2B6387086B DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=sourceware.org; s=default; t=1608676754; bh=jpvzGj+a1nPy5OVsYEUDf0A400at9sP6Ae8/0+nKUy0=; h=Date:To:Subject:References:In-Reply-To:List-Id:List-Unsubscribe: List-Archive:List-Post:List-Help:List-Subscribe:From:Reply-To:Cc: From; b=aIBaDsuCQhhUI3rp+MTWce7f1vtZpnvET0X+MtCxD8CuVx/hrsx/RPp07dGSyLwkE hJeMHlInZPUQu5t3yRZa9oxZon/JoOlxz5IEStpO7MugkoJjmn/rki3BJ7Du3eUZ9U S0r44w8yd46FNby4cQ0kIZ14vpbxQ23CLZTm6yIM= Received: from hera.aquilenet.fr (hera.aquilenet.fr [185.233.100.1]) by sourceware.org (Postfix) with ESMTPS id 2F96E3851C3D for ; Tue, 22 Dec 2020 22:39:12 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.3.2 sourceware.org 2F96E3851C3D Received: from localhost (localhost [127.0.0.1]) by hera.aquilenet.fr (Postfix) with ESMTP id 85078FCF; Tue, 22 Dec 2020 23:39:09 +0100 (CET) X-Virus-Scanned: Debian amavisd-new at aquilenet.fr Received: from hera.aquilenet.fr ([127.0.0.1]) by localhost (hera.aquilenet.fr [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id FyosWdBmMjkV; Tue, 22 Dec 2020 23:39:08 +0100 (CET) Received: from function.youpi.perso.aquilenet.fr (lfbn-bor-1-56-204.w90-50.abo.wanadoo.fr [90.50.148.204]) by hera.aquilenet.fr (Postfix) with ESMTPSA id 933B1B52; Tue, 22 Dec 2020 23:39:08 +0100 (CET) Received: from samy by function.youpi.perso.aquilenet.fr with local (Exim 4.94) (envelope-from ) id 1krqJ9-003MRe-9u; Tue, 22 Dec 2020 23:39:07 +0100 Date: Tue, 22 Dec 2020 23:39:07 +0100 To: Simon Marchi Subject: Re: [PATCH] hurd: Fix getting VM_MIN/MAX_ADDRESS Message-ID: <20201222223907.glamedrblb5hpuux@function> Mail-Followup-To: Simon Marchi , gdb-patches@sourceware.org, Thomas Schwinge , thomas@schwinge.name, bug-hurd@gnu.org References: <20201221175910.yv56opyzsdjn6s3f@function> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Disposition: inline Content-Transfer-Encoding: 8bit In-Reply-To: Organization: I am not organized User-Agent: NeoMutt/20170609 (1.8.3) 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: , From: Samuel Thibault via Gdb-patches Reply-To: Samuel Thibault Cc: bug-hurd@gnu.org, Thomas Schwinge , gdb-patches@sourceware.org, thomas@schwinge.name Errors-To: gdb-patches-bounces@sourceware.org Sender: "Gdb-patches" (For the record, I don't have commit access). Simon Marchi, le lun. 21 déc. 2020 14:40:31 -0500, a ecrit: > > > On 2020-12-21 12:59 p.m., Samuel Thibault via Gdb-patches wrote: > > gnu-nat.c was getting the inclusion of vm_param.h only by luck. We > > need to explicitly include it to be sure to get the definitions of > > VM_MIN/MAX_ADDRESS. > > > > gdb/ChangeLog: > > > > * gnu-nat.c: Include . > > > > diff --git a/gdb/gnu-nat.c b/gdb/gnu-nat.c > > index 1693ce0c43..6f290be0d5 100644 > > --- a/gdb/gnu-nat.c > > +++ b/gdb/gnu-nat.c > > @@ -32,6 +32,7 @@ extern "C" > > #include > > #include > > #include > > +#include > > > > #include > > #include > > > > Thanks, this is ok. > > Simon >