1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-29 04:50:03 +01:00

core/sched: Use xtimer ticks for sched statistics

This commit is contained in:
Joakim Nohlgård 2016-07-06 23:02:42 +02:00
parent 63e91151cd
commit 0ba6c9f3a4

View File

@ -84,7 +84,7 @@ int __attribute__((used)) sched_run(void)
}
#ifdef MODULE_SCHEDSTATISTICS
unsigned long time = xtimer_now();
unsigned long time = _xtimer_now();
#endif
if (active_thread) {