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

iothread-lock.c (224B)


      1#include "qemu/osdep.h"
      2#include "qemu/main-loop.h"
      3
      4bool qemu_mutex_iothread_locked(void)
      5{
      6    return false;
      7}
      8
      9void qemu_mutex_lock_iothread_impl(const char *file, int line)
     10{
     11}
     12
     13void qemu_mutex_unlock_iothread(void)
     14{
     15}