Add ACCESS_ONCE to _STORE_SHARED
[urcu.git] / test_rwlock_timing.c
index 065c2d34038498b90152fa1d6377d4cf36006f38..9ea2494e7804f6e7cd4f402f2542b91a5b125f74 100644 (file)
@@ -35,22 +35,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"
 
 struct test_array {
This page took 0.022942 seconds and 4 git commands to generate.