blob: 847d5b76176b092c2cd7631f873bfe0bd61a885b [file] [log] [blame]
#ifndef _VM_H
#define _VM_H
#include "cpu.h"
#include "mm.h"
struct vm {
struct mm_ptable ptable;
uint32_t vcpu_count;
struct vcpu vcpus[MAX_CPUS];
};
bool vm_init(struct vm *vm, uint32_t id, uint32_t vcpu_count);
void vm_start_vcpu(struct vm *vm, size_t index, size_t entry, size_t arg,
bool is_primary);
void vm_set_current(struct vm *vm);
#endif /* _VM_H */