Palacios Public Git Repository

To checkout Palacios execute

  git clone http://v3vee.org/palacios/palacios.web/palacios.git
This will give you the master branch. You probably want the devel branch or one of the release branches. To switch to the devel branch, simply execute
  cd palacios
  git checkout --track -b devel origin/devel
The other branches are similar.


added generic VMM framework
[palacios.git] / palacios / include / geekos / vmm.h
1 #ifndef __VMM_H
2 #define __VMM_H
3
4
5 #define VMM_INVALID_CPU 0
6 #define VMM_VMX_CPU 1
7 #define VMM_SVM_CPU 2
8
9
10 /* This will contain function pointers that provide OS services */
11 struct vmm_os_hooks {
12   
13
14 };
15
16
17
18
19 /* This will contain Function pointers that control the VMs */
20 struct vmm_ctrl_ops {
21   
22
23 };
24
25
26
27 void Init_VMM();
28
29
30
31 #endif