* @brief Creates a file descriptor for a timer. * * The `timerfd_create` function creates a new timer object that generates * timer expiration notifications via a file descriptor. * * @param clockid The clock ID that specifies the clock to be used as the * timing base for the timer. Common values include: * - `CLOCK_REALTIME`: A system-wide clock representing
| 575 | * @see timerfd_settime, timerfd_gettime |
| 576 | */ |
| 577 | int timerfd_create(int clockid, int flags) |
| 578 | { |
| 579 | return timerfd_do_create(clockid, flags); |
| 580 | } |
| 581 | |
| 582 | /** |
| 583 | * @brief Sets the time for a timer file descriptor. |
no test coverage detected