|
From: <zw...@ma...> - 2009-06-18 09:11:45
|
Author: zwelch
Date: 2009-06-18 09:11:40 +0200 (Thu, 18 Jun 2009)
New Revision: 2282
Modified:
trunk/src/helper/types.h
trunk/src/target/trace.h
Log:
Transform 'u64' to 'uint64_t'
- Replace '\([^_]\)u64' with '\1uint64_t'.
Modified: trunk/src/helper/types.h
===================================================================
--- trunk/src/helper/types.h 2009-06-18 07:11:11 UTC (rev 2281)
+++ trunk/src/helper/types.h 2009-06-18 07:11:40 UTC (rev 2282)
@@ -42,8 +42,8 @@
typedef unsigned int uint32_t;
#endif
-#ifndef u64
-typedef unsigned long long u64;
+#ifndef uint64_t
+typedef unsigned long long uint64_t;
#endif
typedef struct jtag_tap_s jtag_tap_t;
Modified: trunk/src/target/trace.h
===================================================================
--- trunk/src/target/trace.h 2009-06-18 07:11:11 UTC (rev 2281)
+++ trunk/src/target/trace.h 2009-06-18 07:11:40 UTC (rev 2282)
@@ -28,7 +28,7 @@
typedef struct trace_point_s
{
uint32_t address;
- u64 hit_counter;
+ uint64_t hit_counter;
} trace_point_t;
typedef struct trace_s
|