Fix get_cycles for 32-bits x86
[urcu.git] / test_urcu_timing.c
index f97a5c1e3c9a15d3055c596a72a3d4d9e61d3fbc..d469508dedd1361086d025f820ddad9440b2b5ad 100644 (file)
@@ -37,7 +37,7 @@ static inline pid_t gettid(void)
 #define rdtscll(val) do { \
      unsigned int __a,__d; \
      asm volatile("rdtsc" : "=a" (__a), "=d" (__d)); \
-     (val) = ((unsigned long)__a) | (((unsigned long)__d)<<32); \
+     (val) = ((unsigned long long)__a) | (((unsigned long long)__d)<<32); \
 } while(0)
 
 typedef unsigned long long cycles_t;
This page took 0.022613 seconds and 4 git commands to generate.