tests: pthread_barrier: vtimer -> xtimer

This commit is contained in:
Kaspar Schleiser 2015-09-03 21:36:13 +02:00
parent 144a912e37
commit 096823e4d0
2 changed files with 3 additions and 3 deletions

View File

@ -11,6 +11,6 @@ BOARD_INSUFFICIENT_MEMORY := stm32f0discovery
# Modules to include. # Modules to include.
USEMODULE += pthread USEMODULE += pthread
USEMODULE += random USEMODULE += random
USEMODULE += vtimer USEMODULE += xtimer
include $(RIOTBASE)/Makefile.include include $(RIOTBASE)/Makefile.include

View File

@ -23,7 +23,7 @@
#include "pthread.h" #include "pthread.h"
#include "random.h" #include "random.h"
#include "vtimer.h" #include "xtimer.h"
#define NUM_CHILDREN 4 #define NUM_CHILDREN 4
#define NUM_ITERATIONS 5 #define NUM_ITERATIONS 5
@ -45,7 +45,7 @@ static void *run(void *id_)
uint32_t timeout_us = genrand_uint32() % 2500000; uint32_t timeout_us = genrand_uint32() % 2500000;
printf("Child %i sleeps for %8" PRIu32 " µs.\n", id, timeout_us); 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); printf("Done %i\n", id);