https://github.com/qemu/qemu
Raw File
Tip revision: 4f818e7b7f8ecb5c166d093b8859fec2ddeca2ef authored by Peter Maydell on 06 December 2018, 17:07:12 UTC
Update version for v3.1.0-rc5 release
Tip revision: 4f818e7
monitor.c
#include "qemu/osdep.h"
#include "qapi/error.h"
#include "qemu-common.h"
#include "monitor/monitor.h"

__thread Monitor *cur_mon;

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