aboutsummaryrefslogtreecommitdiff
path: root/kvm/user/main.c
diff options
context:
space:
mode:
Diffstat (limited to 'kvm/user/main.c')
-rw-r--r--kvm/user/main.c10
1 files changed, 10 insertions, 0 deletions
diff --git a/kvm/user/main.c b/kvm/user/main.c
index 3d6d73234..0b43d32dd 100644
--- a/kvm/user/main.c
+++ b/kvm/user/main.c
@@ -99,6 +99,14 @@ static int test_io_window(void *opaque)
return 0;
}
+static int test_try_push_interrupts(void *opaque)
+{
+}
+
+static void test_post_kvm_run(void *opaque, struct kvm_run *kvm_run)
+{
+}
+
static struct kvm_callbacks test_callbacks = {
.cpuid = test_cpuid,
.inb = test_inb,
@@ -110,6 +118,8 @@ static struct kvm_callbacks test_callbacks = {
.debug = test_debug,
.halt = test_halt,
.io_window = test_io_window,
+ .try_push_interrupts = test_try_push_interrupts,
+ .post_kvm_run = test_post_kvm_run,
};