vmm_context.h 373 B

1234567891011121314151617
  1. #ifndef __VMM_CONTEXT_H__
  2. #define __VMM_CONTEXT_H__
  3. #include <armv7.h> // for struct rt_hw_stack
  4. #include "vmm.h"
  5. void vmm_context_init(void *context_addr);
  6. #ifdef RT_VMM_USING_DOMAIN
  7. void vmm_context_init_domain(struct vmm_domain *domain);
  8. #endif
  9. void vmm_virq_pending(int irq);
  10. void vmm_verify_guest_status(struct rt_hw_stack *sp);
  11. void vmm_show_guest(void);
  12. #endif