From 4326825931012da72f23607db6febfd44dca670c Mon Sep 17 00:00:00 2001 From: Francisco Molina Date: Tue, 1 Mar 2022 14:43:50 +0100 Subject: [PATCH] tests/bench_xtimer_load: remove uneeded timex call --- tests/bench_xtimer_load/main.c | 2 -- 1 file changed, 2 deletions(-) diff --git a/tests/bench_xtimer_load/main.c b/tests/bench_xtimer_load/main.c index 5f1fd66c49..1f07898ba1 100644 --- a/tests/bench_xtimer_load/main.c +++ b/tests/bench_xtimer_load/main.c @@ -73,7 +73,6 @@ static struct timer_msg msg_d = { .interval = (TEST_INTERVAL * 2) }; static void *slacker_thread(void *arg) { (void)arg; - timex_t now; LOG_DEBUG("run thread %" PRIkernel_pid "\n", thread_getpid()); @@ -85,7 +84,6 @@ static void *slacker_thread(void *arg) msg_t m; msg_receive(&m); struct timer_msg *tmsg = m.content.ptr; - xtimer_now_timex(&now); xtimer_usleep(TEST_MSG_RX_USLEEP); tmsg->msg.type = 12345;