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.


550ab9ac2b9615a8b6bf091a0b2f21ffba33c62f
[palacios.git] / linux_usr / v3_ctrl.h
1 /* 
2  * V3 Control header file 
3  * (c) Jack lange, 2010
4  */
5
6 #ifndef _v3_ctrl_h
7 #define _v3_ctrl_h
8
9 #define V3_START_GUEST 10
10 #define V3_STOP_GUEST 11
11 #define V3_ADD_MEMORY 50
12 #define V3_START_NETWORK 60
13
14 #define V3_VM_CONSOLE_CONNECT 20
15 #define V3_VM_SERIAL_CONNECT 21
16
17 #define V3_VM_MOVE_CORE 33
18
19 static const char * v3_dev = "/dev/v3vee";
20
21 struct v3_guest_img {
22     unsigned long long size;
23     void * guest_data;
24     char name[128];
25 };
26
27
28 struct v3_mem_region {
29     unsigned long long base_addr;
30     unsigned long long num_pages;
31 };
32
33 #endif