aboutsummaryrefslogtreecommitdiff
path: root/stubs/monitor-internal.c
blob: 4fece49d531c017a515027c8dfd4a053fc995b56 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#include "qemu/osdep.h"
#include "qapi/error.h"
#include "monitor/monitor.h"

int monitor_get_fd(Monitor *mon, const char *name, Error **errp)
{
    error_setg(errp, "only QEMU supports file descriptor passing");
    return -1;
}

void monitor_init_hmp(Chardev *chr, bool use_readline, Error **errp)
{
}