aboutsummaryrefslogtreecommitdiff
path: root/hw/virtio/vhost-stub.c
blob: 049089b5e2faae9845e3e6ba4def86de051e49ca (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#include "qemu/osdep.h"
#include "hw/virtio/vhost.h"
#include "hw/virtio/vhost-user.h"

bool vhost_has_free_slot(void)
{
    return true;
}

VhostUserState *vhost_user_init(void)
{
    return NULL;
}

void vhost_user_cleanup(VhostUserState *user)
{
}