X-Git-Url: http://git.liburcu.org/?p=urcu.git;a=blobdiff_plain;f=test_rwlock_timing.c;h=9ea2494e7804f6e7cd4f402f2542b91a5b125f74;hp=6e0523ce0614a5f3e6890460d480774c08974f7a;hb=3db2d75b432e617014976239f694b91de2bc0d7d;hpb=5fa9dfe40762818f355720a66b62700af5aafc28 diff --git a/test_rwlock_timing.c b/test_rwlock_timing.c index 6e0523c..9ea2494 100644 --- a/test_rwlock_timing.c +++ b/test_rwlock_timing.c @@ -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 long)__a) | (((unsigned long 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 {