Re: about FAST_IDLE in Clock_isr

2020-08-14 Thread Joel Sherrill
On Thu, Aug 13, 2020 at 9:49 PM 朱忠杰 wrote: > Hi, everyone > > Is there any consideration why the FAST_IDLE is separated from normal > path,can I change the FAST_IDLE like the following? > The looks reasonably clean. It evolved over time so a clean up may just have been overdue. Just to be clear

about FAST_IDLE in Clock_isr

2020-08-13 Thread 朱忠杰
Hi, everyone Is there any consideration why the FAST_IDLE is separated from normal path,can I change the FAST_IDLE like the following? #if defined(BSP_FEATURE_IRQ_EXTENSION) || \ (CPU_SIMPLE_VECTORED_INTERRUPTS != TRUE) void Clock_isr(void *arg); void Clock_isr(void *arg) { #else rtems_isr Cl