diff options
Diffstat (limited to 'test')
-rw-r--r-- | test/coverage/chcore.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/coverage/chcore.c b/test/coverage/chcore.c index b5191aa6c..9ec3dd9f5 100644 --- a/test/coverage/chcore.c +++ b/test/coverage/chcore.c @@ -60,7 +60,7 @@ void ChkIntSources(void) { bool_t rflag = FALSE;
if (sd_lld_interrupt_pending()) {
- if (chSchRescRequiredI())
+ if (chSchIsRescRequiredExI())
rflag = TRUE;
}
@@ -69,7 +69,7 @@ void ChkIntSources(void) { if (n.QuadPart > nextcnt.QuadPart) {
nextcnt.QuadPart += slice.QuadPart;
chSysTimerHandlerI();
- if (chSchRescRequiredI())
+ if (chSchIsRescRequiredExI())
rflag = TRUE;
}
|