* @brief Deletes a timer. * * This system call deletes the specified timer and releases any resources * associated with it. Once the timer is deleted, its handle becomes invalid, * and any further operations on the timer should be avoided. * * @param[in] timer The handle to the timer to be deleted. Must be a valid `rt_timer_t` object. * * @return sysret_t Returns a status code indicating
| 2916 | * if the timer is in the middle of triggering or executing its callback. |
| 2917 | */ |
| 2918 | sysret_t sys_rt_timer_delete(rt_timer_t timer) |
| 2919 | { |
| 2920 | return lwp_user_object_delete(lwp_self(), (rt_object_t)timer); |
| 2921 | } |
| 2922 | |
| 2923 | /** |
| 2924 | * @brief Starts a timer. |
nothing calls this directly
no test coverage detected