* @brief This function will handle IPI interrupt and do a scheduling in system. * * This function should be invoke or register as ISR in BSP. * * @param vector The number of IPI interrupt for system scheduling. * * @param param Not used, and can be set to RT_NULL. * * @note This function only has MP version. */
| 547 | * @note This function only has MP version. |
| 548 | */ |
| 549 | void rt_scheduler_ipi_handler(int vector, void *param) |
| 550 | { |
| 551 | rt_schedule(); |
| 552 | } |
| 553 | |
| 554 | /** |
| 555 | * @brief Lock the system scheduler |
no test coverage detected