summaryrefslogtreecommitdiff
path: root/kvm.h
diff options
context:
space:
mode:
authorJan Kiszka <jan.kiszka@siemens.com>2011-02-07 12:19:20 +0100
committerMarcelo Tosatti <mtosatti@redhat.com>2011-02-14 12:39:46 -0200
commit44d5cedf803fe27b3b7dabaa1f4d8bb7968d29c0 (patch)
tree3d487736c5de2aa4905f46b5bf913f44e336aed8 /kvm.h
parent24acb217a8ceb0e7a07eadcc708fd8905e28c1ea (diff)
downloadqemu-44d5cedf803fe27b3b7dabaa1f4d8bb7968d29c0.tar.gz
qemu-44d5cedf803fe27b3b7dabaa1f4d8bb7968d29c0.tar.bz2
qemu-44d5cedf803fe27b3b7dabaa1f4d8bb7968d29c0.zip
kvm: Drop return values from kvm_arch_pre/post_run
We do not check them, and the only arch with non-empty implementations always returns 0 (this is also true for qemu-kvm). Signed-off-by: Jan Kiszka <jan.kiszka@siemens.com> CC: Alexander Graf <agraf@suse.de> Signed-off-by: Marcelo Tosatti <mtosatti@redhat.com>
Diffstat (limited to 'kvm.h')
-rw-r--r--kvm.h5
1 files changed, 2 insertions, 3 deletions
diff --git a/kvm.h b/kvm.h
index b2fb5c61e7..7a4d550898 100644
--- a/kvm.h
+++ b/kvm.h
@@ -99,12 +99,11 @@ int kvm_vcpu_ioctl(CPUState *env, int type, ...);
extern const KVMCapabilityInfo kvm_arch_required_capabilities[];
-int kvm_arch_post_run(CPUState *env, struct kvm_run *run);
+void kvm_arch_pre_run(CPUState *env, struct kvm_run *run);
+void kvm_arch_post_run(CPUState *env, struct kvm_run *run);
int kvm_arch_handle_exit(CPUState *env, struct kvm_run *run);
-int kvm_arch_pre_run(CPUState *env, struct kvm_run *run);
-
int kvm_arch_process_irqchip_events(CPUState *env);
int kvm_arch_get_registers(CPUState *env);