mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2025-01-18 12:52:44 +01:00
tests: pthread_barrier: vtimer -> xtimer
This commit is contained in:
parent
144a912e37
commit
096823e4d0
@ -11,6 +11,6 @@ BOARD_INSUFFICIENT_MEMORY := stm32f0discovery
|
||||
# Modules to include.
|
||||
USEMODULE += pthread
|
||||
USEMODULE += random
|
||||
USEMODULE += vtimer
|
||||
USEMODULE += xtimer
|
||||
|
||||
include $(RIOTBASE)/Makefile.include
|
||||
|
@ -23,7 +23,7 @@
|
||||
|
||||
#include "pthread.h"
|
||||
#include "random.h"
|
||||
#include "vtimer.h"
|
||||
#include "xtimer.h"
|
||||
|
||||
#define NUM_CHILDREN 4
|
||||
#define NUM_ITERATIONS 5
|
||||
@ -45,7 +45,7 @@ static void *run(void *id_)
|
||||
|
||||
uint32_t timeout_us = genrand_uint32() % 2500000;
|
||||
printf("Child %i sleeps for %8" PRIu32 " µs.\n", id, timeout_us);
|
||||
vtimer_usleep(timeout_us);
|
||||
xtimer_usleep(timeout_us);
|
||||
}
|
||||
|
||||
printf("Done %i\n", id);
|
||||
|
Loading…
Reference in New Issue
Block a user