From: Kevin Pedretti Date: Tue, 21 Oct 2008 20:15:46 +0000 (-0500) Subject: Fix gcc warning messages X-Git-Tag: 1.0^2~30^2~10^2~2 X-Git-Url: http://v3vee.org/palacios/gitweb/gitweb.cgi?a=commitdiff_plain;h=851892e9e1db5252d2c03e58e7faf9d80c095f6c;hp=fac5e52e6e6f5cb160180c21e1f19c761a7dc88a;p=palacios.git Fix gcc warning messages --- diff --git a/palacios/include/palacios/vmm.h b/palacios/include/palacios/vmm.h index 2f26400..4708cc1 100644 --- a/palacios/include/palacios/vmm.h +++ b/palacios/include/palacios/vmm.h @@ -212,12 +212,12 @@ struct v3_os_hooks { int (*ack_irq)(int irq); - unsigned int (*get_cpu_khz)(); + unsigned int (*get_cpu_khz)(void); - void (*start_kernel_thread)(); // include pointer to function + void (*start_kernel_thread)(void); // include pointer to function - void (*yield_cpu)(); + void (*yield_cpu)(void); }; @@ -233,14 +233,14 @@ struct v3_vm_config { /* This will contain Function pointers that control the VMs */ struct v3_ctrl_ops { - struct guest_info *(*allocate_guest)(); + struct guest_info *(*allocate_guest)(void); int (*config_guest)(struct guest_info * info, struct v3_vm_config * config_ptr); int (*init_guest)(struct guest_info * info); int (*start_guest)(struct guest_info * info); // int (*stop_vm)(uint_t vm_id); - int (*has_nested_paging)(); + int (*has_nested_paging)(void); // v3_cpu_arch_t (*get_cpu_arch)(); };