Add ACCESS_ONCE to _STORE_SHARED
[urcu.git] / test_urcu_timing.c
index f97a5c1e3c9a15d3055c596a72a3d4d9e61d3fbc..ac23846d784f783c1c34d86beab2323bc8381995 100644 (file)
@@ -34,22 +34,6 @@ static inline pid_t gettid(void)
 }
 #endif
 
-#define rdtscll(val) do { \
-     unsigned int __a,__d; \
-     asm volatile("rdtsc" : "=a" (__a), "=d" (__d)); \
-     (val) = ((unsigned long)__a) | (((unsigned long)__d)<<32); \
-} while(0)
-
-typedef unsigned long long cycles_t;
-
-static inline cycles_t get_cycles (void)
-{
-        unsigned long long ret = 0;
-
-        rdtscll(ret);
-        return ret;
-}
-
 #include "urcu.h"
 
 pthread_mutex_t rcu_copy_mutex = PTHREAD_MUTEX_INITIALIZER;
This page took 0.022432 seconds and 4 git commands to generate.