diff options
Diffstat (limited to 'testhal/common/irq_storm.c')
-rw-r--r-- | testhal/common/irq_storm.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/testhal/common/irq_storm.c b/testhal/common/irq_storm.c index c21a2bf00..f8f9b93e3 100644 --- a/testhal/common/irq_storm.c +++ b/testhal/common/irq_storm.c @@ -95,7 +95,7 @@ static THD_FUNCTION(irq_storm_thread, arg) { while (chThdShouldTerminateX() == false) {
/* Waiting for a message.*/
- chMBFetch(&mb[me], &msg, TIME_INFINITE);
+ chMBFetchTimeout(&mb[me], &msg, TIME_INFINITE);
#if IRQ_STORM_CFG_RANDOMIZE != FALSE
/* Pseudo-random delay.*/
@@ -124,7 +124,7 @@ static THD_FUNCTION(irq_storm_thread, arg) { if (target < IRQ_STORM_CFG_NUM_THREADS) {
/* If this thread is not at the end of a chain re-sending the message,
note this check works because the variable target is unsigned.*/
- msg = chMBPost(&mb[target], msg, TIME_IMMEDIATE);
+ msg = chMBPostTimeout(&mb[target], msg, TIME_IMMEDIATE);
if (msg != MSG_OK)
saturated = TRUE;
}
|