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.


v3_cpu_mapper_admit_vm function call moved from start_thread to create_thread
[palacios.git] / linux_module / iface-host-hypercall.h
1 #ifndef __IFACE_HOST_HYPERCALL_H__
2 #define __IFACE_HOST_HYPERCALL_H__
3
4 #define V3_VM_HYPERCALL_ADD 12124
5 #define V3_VM_HYPERCALL_REMOVE 12125
6
7
8 #define HCALL_NAME_MAX 256
9
10 struct hcall_data {
11   int   hcall_nr;
12   char  fn[HCALL_NAME_MAX];
13 };
14
15 #endif