X-Git-Url: https://git.lttng.org/?p=urcu.git;a=blobdiff_plain;f=tests%2Ftest_looplen.c;h=01394e0520292a892673d7d67f07210d4acd29e3;hp=53d39cd9edb6d559bebeb9794b0599591154cfa8;hb=06f22bdbb0c4c4d5db42a2e2dc35818aa61415be;hpb=5481ddb381061bda64aebc039900d21cac6a6caf diff --git a/tests/test_looplen.c b/tests/test_looplen.c index 53d39cd..01394e0 100644 --- a/tests/test_looplen.c +++ b/tests/test_looplen.c @@ -61,7 +61,7 @@ static inline pid_t gettid(void) static inline void loop_sleep(unsigned long l) { while(l-- != 0) - cpu_relax(); + caa_cpu_relax(); } #define LOOPS 1048576 @@ -75,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;