From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from gateway22.websitewelcome.com (gateway22.websitewelcome.com [192.185.47.65]) by sourceware.org (Postfix) with ESMTPS id D9F6E386EC21 for ; Sat, 14 Mar 2020 18:52:03 +0000 (GMT) Received: from cm14.websitewelcome.com (cm14.websitewelcome.com [100.42.49.7]) by gateway22.websitewelcome.com (Postfix) with ESMTP id 7293F5D51 for ; Sat, 14 Mar 2020 13:52:02 -0500 (CDT) Received: from box5379.bluehost.com ([162.241.216.53]) by cmsmtp with SMTP id DBtCjAyyhXVkQDBtCjT2DS; Sat, 14 Mar 2020 13:52:02 -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=References:In-Reply-To:Message-Id:Date:Subject:Cc:To:From: Sender:Reply-To:MIME-Version:Content-Type: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=dYTVCYUwd7XtGtsdhw/n3p3xa6RLzWSaUh8Hf2zx1dY=; b=jNRClM9ldi1FchFwmOK25RuDFs tJeFUXeTgTHJjVVcL2UpxSNF01Rp1Dxvm9nYKKZE5ThCcfAMZEg2MyuCSj+43EUuJJ7pczKhgZ8Bp QURiM1z99bcqhp0yW2bTbtRy1; Received: from 184-96-250-69.hlrn.qwest.net ([184.96.250.69]:39174 helo=bapiya.Home) by box5379.bluehost.com with esmtpsa (TLSv1.2:ECDHE-RSA-AES256-GCM-SHA384:256) (Exim 4.92) (envelope-from ) id 1jDBtC-001Khw-6V; Sat, 14 Mar 2020 12:52:02 -0600 From: Tom Tromey To: gdb-patches@sourceware.org Cc: Tom Tromey Subject: [PATCH v2 04/12] Include in event-loop.c Date: Sat, 14 Mar 2020 12:51:50 -0600 Message-Id: <20200314185158.7816-5-tom@tromey.com> X-Mailer: git-send-email 2.17.2 In-Reply-To: <20200314185158.7816-1-tom@tromey.com> References: <20200314185158.7816-1-tom@tromey.com> 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: 184.96.250.69 X-Source-L: No X-Exim-ID: 1jDBtC-001Khw-6V X-Source: X-Source-Args: X-Source-Dir: X-Source-Sender: 184-96-250-69.hlrn.qwest.net (bapiya.Home) [184.96.250.69]:39174 X-Source-Auth: tom+tromey.com X-Email-Count: 7 X-Source-Cap: ZWx5bnJvYmk7ZWx5bnJvYmk7Ym94NTM3OS5ibHVlaG9zdC5jb20= X-Local-Domain: yes X-Spam-Status: No, score=-24.2 required=5.0 tests=DKIM_SIGNED, DKIM_VALID, GIT_PATCH_0, GIT_PATCH_1, GIT_PATCH_2, GIT_PATCH_3, RCVD_IN_DNSWL_NONE, SPF_HELO_PASS, SPF_NEUTRAL 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: Sat, 14 Mar 2020 18:52:05 -0000 Include in event-loop.c, because it is used there. Currently it is included indirectly, but after the subsequent patches this will no longer be the case. gdb/ChangeLog 2020-03-14 Tom Tromey * event-loop.c: Include . --- gdb/ChangeLog | 4 ++++ gdb/event-loop.c | 2 ++ 2 files changed, 6 insertions(+) diff --git a/gdb/event-loop.c b/gdb/event-loop.c index ae9d27eedd7..880fc30d9d6 100644 --- a/gdb/event-loop.c +++ b/gdb/event-loop.c @@ -22,6 +22,8 @@ #include "event-top.h" #include "ser-event.h" +#include + #ifdef HAVE_POLL #if defined (HAVE_POLL_H) #include -- 2.17.2