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.


added copyright tags
[palacios.git] / palacios / include / palacios / vmm_types.h
1 /* Northwestern University */
2 /* (c) 2008, Jack Lange <jarusl@cs.northwestern.edu> */
3
4 #ifndef __VMM_TYPES_H
5 #define __VMM_TYPES_H
6
7 #include <geekos/ktypes.h>
8
9 /*
10 typedef signed char schar_t;
11 typedef unsigned char uchar_t;
12
13 typedef signed short sshort_t;
14 typedef unsigned short ushort_t;
15
16 typedef signed int sint_t;
17 typedef unsigned int uint_t;
18
19 typedef signed long long sllong_t;
20 typedef unsigned long long ullong_t;
21
22 typedef signed long slong_t;
23 typedef unsigned long ulong_t;
24
25 typedef unsigned long size_t;
26
27 */
28
29
30
31
32 typedef unsigned long long uint64_t;
33 typedef long long sint64_t;
34
35 typedef unsigned int uint32_t;
36 typedef int sint32_t;
37
38 typedef ulong_t addr_t;
39
40 #endif