Remove core-comm dependency through CounterManager/timex in core/oam subsystem. Basic...
[anna.git] / include / anna / core / util / defines.hpp
index 066dd15..536013f 100644 (file)
@@ -112,11 +112,24 @@ typedef unsigned int U32;
 /** Alias for int: signed integer with 32 bits */
 typedef int S32;
 
+///** Alias for unsigned long long: unsigned integer with 64 bits */
+//typedef unsigned long long int U64;
+//
+///** Alias for long long: signed integer with 64 bits */
+//typedef long long int S64;
+#ifndef __x86_64__
+#undef  __anna64__
+/** Alias for long long: signed integer with 64 bits */
+typedef int64_t S64
 /** Alias for unsigned long long: unsigned integer with 64 bits */
-typedef unsigned long long int U64;
-
+typedef u_int64_t U64;
+#else
+#define __anna64__
 /** Alias for long long: signed integer with 64 bits */
 typedef long long int S64;
+/** Alias for unsigned long long: unsigned integer with 64 bits */
+typedef unsigned long long int U64;
+#endif
 
 /** Alias for float: floating number with 32 bits (1-8-23) */
 typedef float F32;