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.


Avoid strict-aliasing related issues when compiling with optimization
[palacios.git] / linux_module / iface-syscall.h
1 #ifndef __IFACE_SYSCALL_H__
2 #define __IFACE_SYSCALL_H__
3
4 #define SYSCALL_OFF   0
5 #define SYSCALL_ON    1
6 #define SYSCALL_STAT  2
7
8 #define V3_VM_SYSCALL_CTRL 0x5CA11
9
10 struct v3_syscall_cmd {
11     int cmd;
12     int syscall_nr;
13 };
14
15
16 #endif