From: Jack Lange Date: Tue, 5 Oct 2010 14:50:47 +0000 (-0500) Subject: minor header file reordering for clarity X-Git-Url: http://v3vee.org/palacios/gitweb/gitweb.cgi?a=commitdiff_plain;h=9fe50ef21a3ea8eeabb660ccacb53288967aa600;p=palacios.git minor header file reordering for clarity --- diff --git a/palacios/include/palacios/vmm.h b/palacios/include/palacios/vmm.h index f37ad83..7a466a9 100644 --- a/palacios/include/palacios/vmm.h +++ b/palacios/include/palacios/vmm.h @@ -261,7 +261,6 @@ struct v3_os_hooks { void *(*vaddr_to_paddr)(void *addr); int (*hook_interrupt)(struct v3_vm_info * vm, unsigned int irq); - int (*ack_irq)(int irq); unsigned int (*get_cpu_khz)(void); @@ -301,8 +300,9 @@ struct v3_interrupt { void Init_V3(struct v3_os_hooks * hooks, int num_cpus); -int v3_start_vm(struct v3_vm_info * vm, unsigned int cpu_mask); struct v3_vm_info * v3_create_vm(void * cfg); +int v3_start_vm(struct v3_vm_info * vm, unsigned int cpu_mask); + int v3_deliver_irq(struct v3_vm_info * vm, struct v3_interrupt * intr);