qemu

FORK: QEMU emulator
git clone https://git.neptards.moe/neptards/qemu.git
Log | Files | Refs | Submodules | LICENSE

monitor.c (384B)


      1 #include "qemu/osdep.h"
      2 #include "qapi/error.h"
      3 #include "monitor/monitor.h"
      4 #include "../monitor/monitor-internal.h"
      5 
      6 int monitor_get_fd(Monitor *mon, const char *name, Error **errp)
      7 {
      8     error_setg(errp, "only QEMU supports file descriptor passing");
      9     return -1;
     10 }
     11 
     12 void monitor_init_hmp(Chardev *chr, bool use_readline, Error **errp)
     13 {
     14 }
     15 
     16 void monitor_fdsets_cleanup(void)
     17 {
     18 }