X-Git-Url: https://codewiz.org/gitweb?a=blobdiff_plain;f=bertos%2Fbenchmark%2Fcontext_switch.c;h=ce051626bc6b770fc399097de9fea74f661cad62;hb=676c6174c50aaf1d501a5b582276364dc52001d1;hp=92d9d9dcd8e58894a906448554251959bd9b1006;hpb=8e9b1ada815064b18774695225d12986bc36bb10;p=bertos.git diff --git a/bertos/benchmark/context_switch.c b/bertos/benchmark/context_switch.c index 92d9d9dc..ce051626 100644 --- a/bertos/benchmark/context_switch.c +++ b/bertos/benchmark/context_switch.c @@ -73,7 +73,7 @@ static void NORETURN hp_process(void) { sig_wait(SIG_USER0); #if CONFIG_USE_HP_TIMER - end = timer_clock_hp(); + end = timer_hw_hpread(); #endif #if CONFIG_USE_LED LED_ON(); @@ -91,7 +91,7 @@ static void NORETURN lp_process(void) { sig_wait(SIG_USER1); #if CONFIG_USE_HP_TIMER - start = timer_clock_hp(); + start = timer_hw_hpread(); #endif #if CONFIG_USE_LED LED_ON(); @@ -123,7 +123,7 @@ void NORETURN context_switch(void) while (1) { #if CONFIG_USE_HP_TIMER - kfile_printf(&out.fd, "Switch: %lu.%lu usec\n", + kfile_printf(&out.fd, "Switch: %lu.%lu usec\n\r", hptime_to_us((end - start)), hptime_to_us((end - start) * 1000) % 1000); #endif