https://github.com/qemu/qemu
Raw File
Tip revision: 2babfe0c9241c239272a03fec785165a50e8288c authored by Peter Maydell on 05 December 2017, 16:36:46 UTC
Update version for v2.11.0-rc4 release
Tip revision: 2babfe0
monitor.c
#include "qemu/osdep.h"
#include "qapi/error.h"
#include "qemu-common.h"
#include "monitor/monitor.h"

Monitor *cur_mon = NULL;

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(Chardev *chr, int flags)
{
}
back to top