From patchwork Mon Apr 8 00:20:57 2019 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Tom Tromey X-Patchwork-Id: 32197 Received: (qmail 79096 invoked by alias); 8 Apr 2019 00:21:06 -0000 Mailing-List: contact gdb-patches-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Unsubscribe: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: gdb-patches-owner@sourceware.org Delivered-To: mailing list gdb-patches@sourceware.org Received: (qmail 79040 invoked by uid 89); 8 Apr 2019 00:21:06 -0000 Authentication-Results: sourceware.org; auth=none X-Spam-SWARE-Status: No, score=-18.6 required=5.0 tests=AWL, BAYES_00, GIT_PATCH_0, GIT_PATCH_1, GIT_PATCH_2, GIT_PATCH_3, RCVD_IN_DNSWL_NONE, SPF_HELO_PASS autolearn=ham version=3.3.1 spammy=HX-Languages-Length:621 X-HELO: gateway36.websitewelcome.com Received: from gateway36.websitewelcome.com (HELO gateway36.websitewelcome.com) (192.185.195.25) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 08 Apr 2019 00:21:05 +0000 Received: from cm11.websitewelcome.com (cm11.websitewelcome.com [100.42.49.5]) by gateway36.websitewelcome.com (Postfix) with ESMTP id CC9A0400C73CD for ; Sun, 7 Apr 2019 18:38:24 -0500 (CDT) Received: from box5379.bluehost.com ([162.241.216.53]) by cmsmtp with SMTP id DI21htx2xdnCeDI21hiUqF; Sun, 07 Apr 2019 19:21:01 -0500 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=qfLr62O1w67bR/N1vmf3l59g4eIyCNY0IH5yrRV2nYs=; b=FPuxr/gJhtHazU7hGjxhNpgE7d E5jDUxncKvUsyBPjnmJImrAMIgGq2APlOvcnt5sB++mN9p9trfe8ZdWf7krPwtbaNnJx7DqaujLsK g+MxLTBO6N5sErnV/jV388f1U; Received: from 174-29-37-56.hlrn.qwest.net ([174.29.37.56]:54032 helo=bapiya.Home) by box5379.bluehost.com with esmtpsa (TLSv1.2:ECDHE-RSA-AES256-GCM-SHA384:256) (Exim 4.91) (envelope-from ) id 1hDI21-000TDz-JK; Sun, 07 Apr 2019 19:21:01 -0500 From: Tom Tromey To: gdb-patches@sourceware.org Cc: Tom Tromey Subject: [PATCH 3/4] Remove an include of common/queue.h Date: Sun, 7 Apr 2019 18:20:57 -0600 Message-Id: <20190408002058.10793-4-tom@tromey.com> In-Reply-To: <20190408002058.10793-1-tom@tromey.com> References: <20190408002058.10793-1-tom@tromey.com> event-loop.c does not need to include common/queue.h, so this removes it. gdb/ChangeLog 2019-04-07 Tom Tromey * event-loop.c: Don't include "common/queue.h". --- gdb/ChangeLog | 4 ++++ gdb/event-loop.c | 1 - 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/gdb/event-loop.c b/gdb/event-loop.c index 28e81646fbd..4d05eb9a243 100644 --- a/gdb/event-loop.c +++ b/gdb/event-loop.c @@ -20,7 +20,6 @@ #include "defs.h" #include "event-loop.h" #include "event-top.h" -#include "common/queue.h" #include "ser-event.h" #ifdef HAVE_POLL