aboutsummaryrefslogtreecommitdiff
path: root/stubs/monitor-core.c
blob: 403c00a6d0c6bd1e7cf8100838e2da0788f9be8c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#include "qemu/osdep.h"
#include "monitor/monitor.h"
#include "qemu-common.h"
#include "qapi/qapi-emit-events.h"

__thread Monitor *cur_mon;

void monitor_init_qmp(Chardev *chr, bool pretty)
{
}

void qapi_event_emit(QAPIEvent event, QDict *qdict)
{
}

int monitor_vprintf(Monitor *mon, const char *fmt, va_list ap)
{
    abort();
}