Fixed obsolete function call in test suite.

git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@10890 35acf78f-673a-0410-8e92-d51de3d6d3f4
This commit is contained in:
Giovanni Di Sirio 2017-10-23 20:13:12 +00:00
parent ede7f0ef09
commit 07bf11c821
2 changed files with 2 additions and 2 deletions

View File

@ -1553,7 +1553,7 @@ void test_cpu_pulse(unsigned duration) {
_sim_check_for_interrupts();
#endif
}
while (chVTIsTimeWithinX(now, start, end));
while (chTimeIsInRangeX(now, start, end));
}
#endif /* CH_DBG_THREADS_PROFILING */

View File

@ -78,7 +78,7 @@ void test_cpu_pulse(unsigned duration) {
_sim_check_for_interrupts();
#endif
}
while (chVTIsTimeWithinX(now, start, end));
while (chTimeIsInRangeX(now, start, end));
}
#endif /* CH_DBG_THREADS_PROFILING */