From 51614bd5bf3e7ad197a4a605948c0370e9b595ec Mon Sep 17 00:00:00 2001 From: Sebastian Huber Date: Sat, 15 Feb 2020 11:14:32 +0100 Subject: bsps/clock: Use _SMP_Get_processor_maximum() Use a specific test to enable the fast idle mode instead of using the rtems_configuration_is_smp_enabled() workaround. Update #3876. --- bsps/shared/dev/clock/clockimpl.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'bsps/shared/dev/clock') diff --git a/bsps/shared/dev/clock/clockimpl.h b/bsps/shared/dev/clock/clockimpl.h index 163b498a18..3c08c80859 100644 --- a/bsps/shared/dev/clock/clockimpl.h +++ b/bsps/shared/dev/clock/clockimpl.h @@ -150,7 +150,7 @@ rtems_isr Clock_isr( Clock_driver_timecounter_tick(); - if (!rtems_configuration_is_smp_enabled()) { + if (_SMP_Get_processor_maximum() == 1) { while ( _Thread_Heir == _Thread_Executing && _Thread_Executing->is_idle ) { -- cgit v1.2.3