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.


eb92d7dc183c4bb788ea35120fa9e2f4baf9f526
[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_ADD_MEMORY 50
11 #define V3_START_NETWORK 60
12
13 #define V3_VM_CONSOLE_CONNECT 20
14 #define V3_VM_SERIAL_CONNECT 21
15 #define V3_VM_STOP 22
16
17 static const char * v3_dev = "/dev/v3vee";
18
19 struct v3_guest_img {
20     unsigned long long size;
21     void * guest_data;
22     char name[128];
23 };
24
25
26 struct v3_mem_region {
27     unsigned long long base_addr;
28     unsigned long long num_pages;
29 };
30
31 #endif