tests/thread_priority_inversion: convert to xtimer_msleep()

This commit is contained in:
Benjamin Valentin 2020-11-04 23:00:51 +01:00
parent 3c6a5f9f5c
commit bea7e14791

View File

@ -70,7 +70,7 @@ void *t_high_handler(void *arg)
(void) arg;
/* starting working loop after 500 ms */
xtimer_usleep(500U * US_PER_MS);
xtimer_msleep(500U);
while (1) {
puts("t_high: allocating resource...");
mutex_lock(&res_mtx);