From patchwork Mon Feb 21 08:43:25 2011 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Paolo Bonzini X-Patchwork-Id: 83796 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from lists.gnu.org (lists.gnu.org [199.232.76.165]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by ozlabs.org (Postfix) with ESMTPS id 04130B70D2 for ; Mon, 21 Feb 2011 20:17:57 +1100 (EST) Received: from localhost ([127.0.0.1]:51709 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1PrRtx-0007Yg-Ox for incoming@patchwork.ozlabs.org; Mon, 21 Feb 2011 04:17:53 -0500 Received: from [140.186.70.92] (port=49184 helo=eggs.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1PrRN8-0004g6-PR for qemu-devel@nongnu.org; Mon, 21 Feb 2011 03:44:01 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1PrRN7-0000KT-NM for qemu-devel@nongnu.org; Mon, 21 Feb 2011 03:43:58 -0500 Received: from mail-wy0-f173.google.com ([74.125.82.173]:61006) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1PrRN7-0000I2-JB for qemu-devel@nongnu.org; Mon, 21 Feb 2011 03:43:57 -0500 Received: by mail-wy0-f173.google.com with SMTP id 29so1150726wyb.4 for ; Mon, 21 Feb 2011 00:43:57 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:sender:from:to:subject:date:message-id:x-mailer :in-reply-to:references; bh=JooudTppK6TmjI0scvhw8ASRVGnya8zh9cX4wKLrbzk=; b=UmtKYevK9QBlUkNYd6A/Cl0zXP7p8EBN76FyAI3cGRfzcacPcCGGoAOzwiVKqfliQE gDakQj5oyscHt0GFeXp/ADz5zM+OnbNlQ0ZAfDIlxaUsV6Mf28HStRqj7T2m0kwY0M+/ lP5JiXuTwlyTwqdzjOxOHSI+jMNjcip9GqfDU= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=sender:from:to:subject:date:message-id:x-mailer:in-reply-to :references; b=Ta4uULK3A1K1mwRscOW2lnpwe9FC8Zef7AXV8A/xDyJzx7J0huPJMcQSlyGC95wU0Y tGLDa/dp8qWLkZpExrHcQixhYyFWMZ0M3uaNizm0Nhdfz+kyYGu3Cc7PU1dhWdAjeg+R c7HxJ2/v2ZEF3ZrcHyQr5s58UeEA+HEBkflPs= Received: by 10.227.27.222 with SMTP id j30mr900521wbc.129.1298277837221; Mon, 21 Feb 2011 00:43:57 -0800 (PST) Received: from localhost.localdomain (93-34-149-100.ip50.fastwebnet.it [93.34.149.100]) by mx.google.com with ESMTPS id t5sm1945464wes.9.2011.02.21.00.43.55 (version=TLSv1/SSLv3 cipher=OTHER); Mon, 21 Feb 2011 00:43:56 -0800 (PST) From: Paolo Bonzini To: qemu-devel@nongnu.org Date: Mon, 21 Feb 2011 09:43:25 +0100 Message-Id: <1298277820-8817-7-git-send-email-pbonzini@redhat.com> X-Mailer: git-send-email 1.7.3.5 In-Reply-To: <1298277820-8817-1-git-send-email-pbonzini@redhat.com> References: <1298277820-8817-1-git-send-email-pbonzini@redhat.com> X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.6 (newer, 2) X-Received-From: 74.125.82.173 Subject: [Qemu-devel] [PATCH 06/21] include qemu-thread.h early X-BeenThere: qemu-devel@nongnu.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: qemu-devel.nongnu.org List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org Errors-To: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org Signed-off-by: Paolo Bonzini --- cpus.c | 3 +-- 1 files changed, 1 insertions(+), 2 deletions(-) diff --git a/cpus.c b/cpus.c index aa30474..7a9440f 100644 --- a/cpus.c +++ b/cpus.c @@ -32,6 +32,7 @@ #include "kvm.h" #include "exec-all.h" +#include "qemu-thread.h" #include "cpus.h" #include "compatfd.h" @@ -592,8 +593,6 @@ void vm_stop(int reason) #else /* CONFIG_IOTHREAD */ -#include "qemu-thread.h" - QemuMutex qemu_global_mutex; static QemuMutex qemu_fair_mutex;