diff options
Diffstat (limited to 'src/pth.h')
-rw-r--r-- | src/pth.h | 6 |
1 files changed, 2 insertions, 4 deletions
@@ -25,7 +25,5 @@ void prne_init_worker (prne_worker_t *w); void prne_free_worker (prne_worker_t *w); void prne_fin_worker (prne_worker_t *w); -bool prne_pth_cv_notify (prne_pth_cv_t *cv); -bool prne_pth_cond_timedwait (prne_pth_cv_t *cv, const struct timespec *timeout, bool *to_reached); -int prne_unint_pth_poll (struct pollfd *fds, nfds_t nfds, const struct timespec *timeout); -void prne_unint_pth_nanosleep (struct timespec dur); +bool prne_pth_cv_notify (pth_mutex_t *lock, pth_cond_t *cond, bool broadcast); +pth_time_t prne_pth_tstimeout (const struct timespec ts); |