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 / trap.h
227 B 10 lines
1#ifndef HV_TRAP_H 2#define HV_TRAP_H 3 4#include "hv/vcpu.h" 5 6void trap_handle_lower_sync(struct trap_frame *frame); 7void trap_handle_current_sync(struct trap_frame *frame); 8void trap_handle_irq(struct trap_frame *frame); 9 10#endif