cachepc-qemu

Fork of AMDESE/qemu with changes for cachepc side-channel attack
git clone https://git.sinitax.com/sinitax/cachepc-qemu
Log | Files | Refs | Submodules | LICENSE | sfeed.txt

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
      6int 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
     12void monitor_init_hmp(Chardev *chr, bool use_readline, Error **errp)
     13{
     14}
     15
     16void monitor_fdsets_cleanup(void)
     17{
     18}