* @brief This function will get the handler of the idle thread. */
| 206 | * @brief This function will get the handler of the idle thread. |
| 207 | */ |
| 208 | rt_thread_t rt_thread_idle_gethandler(void) |
| 209 | { |
| 210 | int id = rt_cpu_get_id(); |
| 211 | |
| 212 | return (rt_thread_t)(&idle_thread[id]); |
| 213 | } |
| 214 | |
| 215 | /** @} group_thread_management */ |
nothing calls this directly
no test coverage detected