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.


15b6cca335fdbc18f62990b30fac3c776a6fd360
[palacios.git] / palacios / include / geekos / vm_guest.h
1 #ifndef __VM_GUEST_H
2 #define __VM_GUEST_H
3
4 #include <geekos/svm.h>
5 #include <geekos/vmx.h>
6
7
8
9
10
11 typedef struct guest_state {
12   reg_ex_t rip;
13   reg_ex_t rsp;
14
15   
16   void * arch_data;
17 } guest_state_t;
18
19
20
21
22
23
24
25
26 #endif