2
0

monitor.c 384 B

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