X-Git-Url: http://git.liburcu.org/?a=blobdiff_plain;f=tests%2Ftest_looplen.c;h=01394e0520292a892673d7d67f07210d4acd29e3;hb=e0ab43eb922df8fee5f28416d41fa3b2ca4a7a43;hp=50069510fbf1498793f280faa037d392ae287dd6;hpb=833dbdb633ba44bfb71b4b965a83096d8e4e827b;p=urcu.git diff --git a/tests/test_looplen.c b/tests/test_looplen.c index 5006951..01394e0 100644 --- a/tests/test_looplen.c +++ b/tests/test_looplen.c @@ -3,7 +3,7 @@ * * Userspace RCU library - test program * - * Copyright February 2009 - Mathieu Desnoyers + * Copyright February 2009 - Mathieu Desnoyers * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -32,8 +32,9 @@ #include #include #include +#include -#include "../arch.h" +#include #if defined(_syscall0) _syscall0(pid_t, gettid) @@ -55,12 +56,12 @@ static inline pid_t gettid(void) #else #define debug_yield_read() #endif -#include "../urcu.h" +#include static inline void loop_sleep(unsigned long l) { while(l-- != 0) - cpu_relax(); + caa_cpu_relax(); } #define LOOPS 1048576 @@ -74,9 +75,9 @@ int main(int argc, char **argv) double cpl; for (i = 0; i < TESTS; i++) { - time1 = get_cycles(); + time1 = caa_get_cycles(); loop_sleep(LOOPS); - time2 = get_cycles(); + time2 = caa_get_cycles(); time_tot += time2 - time1; } cpl = ((double)time_tot) / (double)TESTS / (double)LOOPS;