| 150 | } |
| 151 | |
| 152 | inline void condition_variable::notify_all() BOOST_NOEXCEPT |
| 153 | { |
| 154 | #if defined BOOST_THREAD_PROVIDES_INTERRUPTIONS |
| 155 | boost::pthread::pthread_mutex_scoped_lock internal_lock(&internal_mutex); |
| 156 | #endif |
| 157 | BOOST_VERIFY(!posix::pthread_cond_broadcast(&cond)); |
| 158 | } |
| 159 | |
| 160 | class condition_variable_any |
| 161 | { |