From patchwork Tue Aug 7 19:56:39 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Eduardo Habkost X-Patchwork-Id: 175797 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from lists.gnu.org (lists.gnu.org [208.118.235.17]) (using TLSv1 with cipher AES256-SHA (256/256 bits)) (Client did not present a certificate) by ozlabs.org (Postfix) with ESMTPS id A6EE52C008A for ; Wed, 8 Aug 2012 06:24:24 +1000 (EST) Received: from localhost ([::1]:57479 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1SypuO-0005NU-DG for incoming@patchwork.ozlabs.org; Tue, 07 Aug 2012 15:57:40 -0400 Received: from eggs.gnu.org ([208.118.235.92]:36257) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Sypso-0001zf-Ol for qemu-devel@nongnu.org; Tue, 07 Aug 2012 15:56:07 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1Sypsn-0008Nw-EI for qemu-devel@nongnu.org; Tue, 07 Aug 2012 15:56:02 -0400 Received: from mx1.redhat.com ([209.132.183.28]:33199) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Sypsn-0008NQ-6g for qemu-devel@nongnu.org; Tue, 07 Aug 2012 15:56:01 -0400 Received: from int-mx02.intmail.prod.int.phx2.redhat.com (int-mx02.intmail.prod.int.phx2.redhat.com [10.5.11.12]) by mx1.redhat.com (8.14.4/8.14.4) with ESMTP id q77JtxMY010865 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=OK); Tue, 7 Aug 2012 15:55:59 -0400 Received: from blackpad.lan.raisama.net (vpn1-5-224.gru2.redhat.com [10.97.5.224]) by int-mx02.intmail.prod.int.phx2.redhat.com (8.13.8/8.13.8) with ESMTP id q77Jtxcx006976; Tue, 7 Aug 2012 15:55:59 -0400 Received: by blackpad.lan.raisama.net (Postfix, from userid 500) id 83A7C2003E0; Tue, 7 Aug 2012 16:56:56 -0300 (BRT) From: Eduardo Habkost To: qemu-devel@nongnu.org Date: Tue, 7 Aug 2012 16:56:39 -0300 Message-Id: <1344369413-9053-2-git-send-email-ehabkost@redhat.com> In-Reply-To: <1344369413-9053-1-git-send-email-ehabkost@redhat.com> References: <1344369413-9053-1-git-send-email-ehabkost@redhat.com> X-Scanned-By: MIMEDefang 2.67 on 10.5.11.12 X-detected-operating-system: by eggs.gnu.org: Genre and OS details not recognized. X-Received-From: 209.132.183.28 Cc: Igor Mammedov , =?UTF-8?q?Andreas=20F=C3=A4rber?= , Gleb Natapov Subject: [Qemu-devel] [RFC 01/15] cpus.h: include cpu-common.h 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 Needed for the definition of fprint_function. This is not necessary right now, but it will be necessary if code that doesn't include cpu-common.h includes cpus.h. Signed-off-by: Eduardo Habkost --- cpus.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/cpus.h b/cpus.h index 81bd817..061ff7f 100644 --- a/cpus.h +++ b/cpus.h @@ -1,6 +1,8 @@ #ifndef QEMU_CPUS_H #define QEMU_CPUS_H +#include "qemu-common.h" + /* cpus.c */ void qemu_init_cpu_loop(void); void resume_all_vcpus(void);