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 / image.h
249 B 15 lines
1#ifndef HV_IMAGE_H 2#define HV_IMAGE_H 3 4#include "hv/types.h" 5 6struct hv_image_span { 7 uint64_t start; 8 uint64_t end; 9 uint64_t size; 10}; 11 12struct hv_image_span hv_image_span(void); 13bool hv_image_contains(uint64_t addr, uint64_t len); 14 15#endif