6 #ifndef pthread_condition_variable_hpp
7 #define pthread_condition_variable_hpp
16 #include "pthread/config.h"
18 #include "pthread/exceptions.hpp"
19 #include "pthread/mutex.hpp"
20 #include "pthread/lock_guard.hpp"
92 template<
class Lambda>
bool wait(
mutex &mtx, Lambda lambda);
152 template<
class Lambda>
bool wait_for(
mutex &mtx,
int millis, Lambda lambda);
177 #if __cplusplus < 201103L
187 #if __cplusplus < 201103L
199 void milliseconds(
int milliseconds);
202 pthread_cond_t _condition;
211 bool stop_waiting = lambda();
213 while(!stop_waiting){
215 stop_waiting = lambda();
224 return wait( *(lck._mutex), lambda);
231 milliseconds(millis);
232 bool stop_waiting = lambda();
234 while((! stop_waiting) && (status ==
no_timeout)){
236 rc = pthread_cond_timedwait ( &_condition, &mtx.
_mutex, &timeout );
256 stop_waiting = lambda();
260 return stop_waiting ;
266 return wait_for(*(lck._mutex),millis, lambda);
void notify_one() noexcept
void notify_all() noexcept
cv_status wait_for(mutex &mtx, int millis)