X-Git-Url: http://v3vee.org/palacios/gitweb/gitweb.cgi?a=blobdiff_plain;f=palacios%2Finclude%2Fpalacios%2Fvmm_types.h;fp=palacios%2Finclude%2Fpalacios%2Fvmm_types.h;h=4e073bee2585a269acb068556cc82c7c0759e3fc;hb=bcd3b6c3cc285fcb6ef02e553b3a3f166d652c7e;hp=cb846f20e7f89064a6bfbe8274fc396d77aa8b12;hpb=24fcab4d8b04686973b9318289d26c30c8873a38;p=palacios.git diff --git a/palacios/include/palacios/vmm_types.h b/palacios/include/palacios/vmm_types.h index cb846f2..4e073be 100644 --- a/palacios/include/palacios/vmm_types.h +++ b/palacios/include/palacios/vmm_types.h @@ -5,7 +5,6 @@ #define __VMM_TYPES_H #ifdef __V3VEE__ -//#include typedef signed char schar_t; @@ -24,9 +23,11 @@ typedef signed long slong_t; typedef unsigned long ulong_t; typedef unsigned long size_t; + - - +#define false 0 +#define true 1 +typedef uchar_t bool; @@ -36,6 +37,13 @@ typedef long long sint64_t; typedef unsigned int uint32_t; typedef int sint32_t; + +typedef unsigned short uint16_t; +typedef short sint16_t; + +typedef unsigned char uint8_t; +typedef char sint8_t; + typedef ulong_t addr_t; #endif // ! __V3VEE__