AArch64 EL2 hypervisor for QEMU virt that boots at EL2
1

Configure Feed

Select the types of activity you want to include in your feed.

ariel / include / hv / monitor.h
181 B 10 lines
1#ifndef HV_MONITOR_H 2#define HV_MONITOR_H 3 4#include "hv/vcpu.h" 5 6void monitor_init(void); 7void monitor_poll(void); 8void monitor_loop(struct vcpu *vcpu, const char *reason); 9 10#endif