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

change-state-handler.c (312B)


      1#include "qemu/osdep.h"
      2#include "sysemu/runstate.h"
      3
      4VMChangeStateEntry *qemu_add_vm_change_state_handler(VMChangeStateHandler *cb,
      5                                                     void *opaque)
      6{
      7    return NULL;
      8}
      9
     10void qemu_del_vm_change_state_handler(VMChangeStateEntry *e)
     11{
     12    /* Nothing to do. */
     13}