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

cpu-get-clock.c (149B)


      1#include "qemu/osdep.h"
      2#include "sysemu/cpu-timers.h"
      3#include "qemu/main-loop.h"
      4
      5int64_t cpu_get_clock(void)
      6{
      7    return get_clock_realtime();
      8}