From patchwork Thu Oct 1 08:59:54 2015 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Markus Armbruster X-Patchwork-Id: 525068 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from lists.gnu.org (lists.gnu.org [IPv6:2001:4830:134:3::11]) (using TLSv1 with cipher AES256-SHA (256/256 bits)) (No client certificate requested) by ozlabs.org (Postfix) with ESMTPS id A3872140D16 for ; Fri, 2 Oct 2015 00:45:41 +1000 (AEST) Received: from localhost ([::1]:51173 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Zhf75-0008AA-Ci for incoming@patchwork.ozlabs.org; Thu, 01 Oct 2015 10:45:39 -0400 Received: from eggs.gnu.org ([2001:4830:134:3::10]:57343) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ZhZim-0001rT-IG for qemu-devel@nongnu.org; Thu, 01 Oct 2015 05:00:15 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1ZhZie-0002pL-Kj for qemu-devel@nongnu.org; Thu, 01 Oct 2015 05:00:10 -0400 Received: from mx1.redhat.com ([209.132.183.28]:44846) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ZhZie-0002oD-GP for qemu-devel@nongnu.org; Thu, 01 Oct 2015 05:00:04 -0400 Received: from int-mx11.intmail.prod.int.phx2.redhat.com (int-mx11.intmail.prod.int.phx2.redhat.com [10.5.11.24]) by mx1.redhat.com (Postfix) with ESMTPS id 27A1A550DA; Thu, 1 Oct 2015 09:00:04 +0000 (UTC) Received: from blackfin.pond.sub.org (ovpn-116-48.ams2.redhat.com [10.36.116.48]) by int-mx11.intmail.prod.int.phx2.redhat.com (8.14.4/8.14.4) with ESMTP id t91902Nj016956 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-GCM-SHA384 bits=256 verify=NO); Thu, 1 Oct 2015 05:00:03 -0400 Received: by blackfin.pond.sub.org (Postfix, from userid 1000) id 8516C3011F99; Thu, 1 Oct 2015 10:59:59 +0200 (CEST) From: Markus Armbruster To: qemu-devel@nongnu.org Date: Thu, 1 Oct 2015 10:59:54 +0200 Message-Id: <1443689999-12182-6-git-send-email-armbru@redhat.com> In-Reply-To: <1443689999-12182-1-git-send-email-armbru@redhat.com> References: <1443689999-12182-1-git-send-email-armbru@redhat.com> X-Scanned-By: MIMEDefang 2.68 on 10.5.11.24 X-detected-operating-system: by eggs.gnu.org: GNU/Linux 3.x X-Received-From: 209.132.183.28 Cc: thuth@redhat.com, ehabkost@redhat.com, stefanha@redhat.com, pbonzini@redhat.com, afaerber@suse.de Subject: [Qemu-devel] [PATCH v5 05/10] libqtest: Clean up unused QTestState member sigact_old X-BeenThere: qemu-devel@nongnu.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org Sender: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org Unused since commit d766825. Signed-off-by: Markus Armbruster Reviewed-by: Eric Blake Reviewed-by: Thomas Huth --- tests/libqtest.c | 1 - 1 file changed, 1 deletion(-) diff --git a/tests/libqtest.c b/tests/libqtest.c index e5188e0..8dede56 100644 --- a/tests/libqtest.c +++ b/tests/libqtest.c @@ -46,7 +46,6 @@ struct QTestState bool irq_level[MAX_IRQ]; GString *rx; pid_t qemu_pid; /* our child QEMU process */ - struct sigaction sigact_old; /* restored on exit */ }; static GList *qtest_instances;