| 142 | } |
| 143 | |
| 144 | inline void condition_variable::notify_one() BOOST_NOEXCEPT |
| 145 | { |
| 146 | #if defined BOOST_THREAD_PROVIDES_INTERRUPTIONS |
| 147 | boost::pthread::pthread_mutex_scoped_lock internal_lock(&internal_mutex); |
| 148 | #endif |
| 149 | BOOST_VERIFY(!posix::pthread_cond_signal(&cond)); |
| 150 | } |
| 151 | |
| 152 | inline void condition_variable::notify_all() BOOST_NOEXCEPT |
| 153 | { |
no test coverage detected