From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([140.186.70.92]:48924) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1RZ6qO-0005l2-5U for qemu-devel@nongnu.org; Fri, 09 Dec 2011 15:14:57 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1RZ6qM-00036V-EI for qemu-devel@nongnu.org; Fri, 09 Dec 2011 15:14:56 -0500 Received: from gw.ac.upc.edu ([147.83.30.3]:40198) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1RZ6qM-00036D-8B for qemu-devel@nongnu.org; Fri, 09 Dec 2011 15:14:54 -0500 Received: from localhost (unknown [84.88.53.92]) by gw.ac.upc.edu (Postfix) with ESMTP id 27D3C6B01CA for ; Fri, 9 Dec 2011 21:14:53 +0100 (CET) From: =?utf-8?b?TGx1w61z?= Vilanova Date: Fri, 09 Dec 2011 21:14:46 +0100 Message-ID: <20111209201446.11487.97659.stgit@ginnungagap.bsc.es> In-Reply-To: <20111209201430.11487.82078.stgit@ginnungagap.bsc.es> References: <20111209201430.11487.82078.stgit@ginnungagap.bsc.es> MIME-Version: 1.0 Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable Subject: [Qemu-devel] [PATCH 1/7] Make 'qemu_init_vcpu' a function (instead of a macro) List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Implementation with 'CONFIG_USER_ONLY' is moved into new file 'cpus-user.= c'. Signed-off-by: Llu=C3=ADs Vilanova --- Makefile.objs | 1 + cpus-user.c | 15 +++++++++++++++ qemu-common.h | 4 ---- 3 files changed, 16 insertions(+), 4 deletions(-) create mode 100644 cpus-user.c diff --git a/Makefile.objs b/Makefile.objs index f153fa5..b17b64f 100644 --- a/Makefile.objs +++ b/Makefile.objs @@ -178,6 +178,7 @@ user-obj-y =3D user-obj-y +=3D envlist.o path.o user-obj-y +=3D tcg-runtime.o host-utils.o user-obj-y +=3D cutils.o cache-utils.o +user-obj-y +=3D cpus-user.o user-obj-y +=3D $(trace-obj-y) =20 ###################################################################### diff --git a/cpus-user.c b/cpus-user.c new file mode 100644 index 0000000..50e45ce --- /dev/null +++ b/cpus-user.c @@ -0,0 +1,15 @@ +/* + * Implementation of routines in "cpus.c" when compiling for CONFIG_USER= _ONLY. + * + * Copyright (C) 2011 Llu=C3=ADs Vilanova + * + * This work is licensed under the terms of the GNU GPL, version 2 or la= ter. + * See the COPYING file in the top-level directory. + */ + +#include "qemu-common.h" + + +void qemu_init_vcpu(void *env) +{ +} diff --git a/qemu-common.h b/qemu-common.h index 2ce47aa..2cd838a 100644 --- a/qemu-common.h +++ b/qemu-common.h @@ -265,11 +265,7 @@ struct qemu_work_item { int done; }; =20 -#ifdef CONFIG_USER_ONLY -#define qemu_init_vcpu(env) do { } while (0) -#else void qemu_init_vcpu(void *env); -#endif =20 typedef struct QEMUIOVector { struct iovec *iov;