From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from gateway20.websitewelcome.com (gateway20.websitewelcome.com [192.185.65.13]) by sourceware.org (Postfix) with ESMTPS id 5735B3943541 for ; Sun, 21 Feb 2021 03:16:51 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.3.2 sourceware.org 5735B3943541 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 cm11.websitewelcome.com (cm11.websitewelcome.com [100.42.49.5]) by gateway20.websitewelcome.com (Postfix) with ESMTP id 2AFB3400D0752 for ; Sat, 20 Feb 2021 21:08:49 -0600 (CST) Received: from box5379.bluehost.com ([162.241.216.53]) by cmsmtp with SMTP id DfEolsHTVSrGMDfEolNub2; Sat, 20 Feb 2021 21:16:50 -0600 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-Transfer-Encoding:MIME-Version:References:In-Reply-To: Message-Id:Date:Subject:Cc:To:From:Sender:Reply-To:Content-Type: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=Z1vhdcE/xpEDYQ2amZBHGc154VlmBeFU2u3jKZsqJP4=; b=wtghG1ccdcY8BZrbEm1oqJGpX9 b0F2hojIorvUAZFFDSufMR+Jbr8fSoh2uegrP1jhY2gDHK84ycH+gakhU1OCmRsksv+NiKYexxFcQ UOB4dd/Xh+HOSia6AuzunjFkE; Received: from 97-122-70-152.hlrn.qwest.net ([97.122.70.152]:56692 helo=localhost.localdomain) by box5379.bluehost.com with esmtpsa (TLS1.2) tls TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384 (Exim 4.93) (envelope-from ) id 1lDfEo-001OUW-Ki; Sat, 20 Feb 2021 20:16:50 -0700 From: Tom Tromey To: gdb-patches@sourceware.org Cc: Tom Tromey Subject: [PATCH 4/5] Include scoped_fd.h in debuginfod-support.h Date: Sat, 20 Feb 2021 20:16:46 -0700 Message-Id: <20210221031647.949270-5-tom@tromey.com> X-Mailer: git-send-email 2.26.2 In-Reply-To: <20210221031647.949270-1-tom@tromey.com> References: <20210221031647.949270-1-tom@tromey.com> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-AntiAbuse: This header was added to track abuse, please include it with any abuse report X-AntiAbuse: Primary Hostname - box5379.bluehost.com X-AntiAbuse: Original Domain - sourceware.org X-AntiAbuse: Originator/Caller UID/GID - [47 12] / [47 12] X-AntiAbuse: Sender Address Domain - tromey.com X-BWhitelist: no X-Source-IP: 97.122.70.152 X-Source-L: No X-Exim-ID: 1lDfEo-001OUW-Ki X-Source: X-Source-Args: X-Source-Dir: X-Source-Sender: 97-122-70-152.hlrn.qwest.net (localhost.localdomain) [97.122.70.152]:56692 X-Source-Auth: tom+tromey.com X-Email-Count: 5 X-Source-Cap: ZWx5bnJvYmk7ZWx5bnJvYmk7Ym94NTM3OS5ibHVlaG9zdC5jb20= X-Local-Domain: yes X-Spam-Status: No, score=-3034.6 required=5.0 tests=BAYES_00, DKIM_SIGNED, DKIM_VALID, GIT_PATCH_0, JMQ_SPF_NEUTRAL, RCVD_IN_DNSWL_NONE, SPF_HELO_PASS, SPF_NEUTRAL, TXREP autolearn=ham autolearn_force=no version=3.4.2 X-Spam-Checker-Version: SpamAssassin 3.4.2 (2018-09-13) on server2.sourceware.org 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: Sun, 21 Feb 2021 03:16:52 -0000 debuginfod-support.h requires scoped_fd, so include the header here. gdb/ChangeLog 2021-02-20 Tom Tromey * debuginfod-support.h: Include scoped_fd.h. --- gdb/ChangeLog | 4 ++++ gdb/debuginfod-support.h | 2 ++ 2 files changed, 6 insertions(+) diff --git a/gdb/debuginfod-support.h b/gdb/debuginfod-support.h index e90b78a745b..5e5aab56e74 100644 --- a/gdb/debuginfod-support.h +++ b/gdb/debuginfod-support.h @@ -19,6 +19,8 @@ #ifndef DEBUGINFOD_SUPPORT_H #define DEBUGINFOD_SUPPORT_H +#include "gdbsupport/scoped_fd.h" + /* Query debuginfod servers for a source file associated with an executable with BUILD_ID. BUILD_ID can be given as a binary blob or a null-terminated string. If given as a binary blob, BUILD_ID_LEN -- 2.26.2