xref: /qemu/stubs/monitor-core.c (revision d4d0ebb7)
16ede81d5SKevin Wolf #include "qemu/osdep.h"
26ede81d5SKevin Wolf #include "monitor/monitor.h"
36ede81d5SKevin Wolf #include "qapi/qapi-emit-events.h"
46ede81d5SKevin Wolf 
monitor_cur(void)5947e4744SKevin Wolf Monitor *monitor_cur(void)
6947e4744SKevin Wolf {
7947e4744SKevin Wolf     return NULL;
8947e4744SKevin Wolf }
96ede81d5SKevin Wolf 
monitor_set_cur(Coroutine * co,Monitor * mon)10*e69ee454SKevin Wolf Monitor *monitor_set_cur(Coroutine *co, Monitor *mon)
1141725fa7SKevin Wolf {
1241725fa7SKevin Wolf     return NULL;
1341725fa7SKevin Wolf }
1441725fa7SKevin Wolf 
qapi_event_emit(QAPIEvent event,QDict * qdict)156ede81d5SKevin Wolf void qapi_event_emit(QAPIEvent event, QDict *qdict)
166ede81d5SKevin Wolf {
176ede81d5SKevin Wolf }
186ede81d5SKevin Wolf 
monitor_vprintf(Monitor * mon,const char * fmt,va_list ap)196ede81d5SKevin Wolf int monitor_vprintf(Monitor *mon, const char *fmt, va_list ap)
206ede81d5SKevin Wolf {
216ede81d5SKevin Wolf     abort();
226ede81d5SKevin Wolf }
23