From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([140.186.70.92]:41672) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1R27e9-0002SA-5O for qemu-devel@nongnu.org; Fri, 09 Sep 2011 16:25:57 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1R27e7-0001qF-Pf for qemu-devel@nongnu.org; Fri, 09 Sep 2011 16:25:57 -0400 Received: from mx1.redhat.com ([209.132.183.28]:57245) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1R27e7-0001q6-FR for qemu-devel@nongnu.org; Fri, 09 Sep 2011 16:25:55 -0400 From: Luiz Capitulino Date: Fri, 9 Sep 2011 17:25:38 -0300 Message-Id: <1315599946-27081-2-git-send-email-lcapitulino@redhat.com> In-Reply-To: <1315599946-27081-1-git-send-email-lcapitulino@redhat.com> References: <1315599946-27081-1-git-send-email-lcapitulino@redhat.com> Subject: [Qemu-devel] [PATCH 1/9] Move vm_state_notify() prototype from cpus.h to sysemu.h List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: kwolf@redhat.com, aliguori@us.ibm.com, jan.kiszka@siemens.com, armbru@redhat.com, amit.shah@redhat.com, vilanova@ac.upc.edu It's where all the state handling functions prototypes are located. Signed-off-by: Luiz Capitulino --- cpus.h | 1 - sysemu.h | 1 + 2 files changed, 1 insertions(+), 1 deletions(-) diff --git a/cpus.h b/cpus.h index f42b54e..5885885 100644 --- a/cpus.h +++ b/cpus.h @@ -15,7 +15,6 @@ void cpu_synchronize_all_post_init(void); /* vl.c */ extern int smp_cores; extern int smp_threads; -void vm_state_notify(int running, int reason); bool cpu_exec_all(void); void set_numa_modes(void); void set_cpu_log(const char *optarg); diff --git a/sysemu.h b/sysemu.h index 9090457..eb66af5 100644 --- a/sysemu.h +++ b/sysemu.h @@ -23,6 +23,7 @@ typedef void VMChangeStateHandler(void *opaque, int running, int reason); VMChangeStateEntry *qemu_add_vm_change_state_handler(VMChangeStateHandler *cb, void *opaque); void qemu_del_vm_change_state_handler(VMChangeStateEntry *e); +void vm_state_notify(int running, int reason); #define VMSTOP_USER 0 #define VMSTOP_DEBUG 1 -- 1.7.7.rc0.72.g4b5ea