https://github.com/qemu/qemu
Raw File
Tip revision: e22f675bdd3689472032d0de0799519c3e07fd2c authored by Michael Roth on 02 August 2018, 20:51:06 UTC
Update version for 2.12.1 release
Tip revision: e22f675
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