* @brief Controls various properties of a timer. * * This system call provides control over various aspects of a timer, such as * modifying its configuration, querying its status, or changing its behavior. * The specific behavior is determined by the command (`cmd`) and any associated arguments (`arg`). * * @param[in] timer The handle to the timer to be controlled. Must be a valid `rt_time
| 2993 | * @warning Using invalid or unsupported commands may cause undefined behavior or crashes. |
| 2994 | */ |
| 2995 | sysret_t sys_rt_timer_control(rt_timer_t timer, int cmd, void *arg) |
| 2996 | { |
| 2997 | return rt_timer_control(timer, cmd, arg); |
| 2998 | } |
| 2999 | |
| 3000 | /* MUSL compatible */ |
| 3001 | struct ksigevent |
nothing calls this directly
no test coverage detected