Updated: October 28, 2024 |
Call the specified poll check function at a specified interval
#include <qh/time.h>
int qh_poll_until(uint64_t poll_interval_ns, clockid_t clock_id, uint64_t max_absolute_time_ns, qh_poll_check_cb_ft poll_check_f, void *cb_data)
This function calls the poll check function specified by poll_check_f at intervals specified in nanoseconds by poll_interval_ns until either a maximum absolute time has been reached or the poll check function tells it to stop polling. Sleeping between the poll check calls and evaluating the maximum absolute time is done using the clock specified by clock_id.
EOK, ETIME, or a standard errno on failure. errno is set if the return value is not EOK.