@@ -156,11 +156,11 @@ namespace boost
156
156
{
157
157
boost::throw_exception (thread_resource_error (res, " boost::condition_variable_any::condition_variable_any() failed in pthread_mutex_init" ));
158
158
}
159
- int const res2= pthread_cond_init (& cond, NULL );
159
+ int const res2 = detail::monotonic_pthread_cond_init ( cond);
160
160
if (res2)
161
161
{
162
162
BOOST_VERIFY (!pthread_mutex_destroy (&internal_mutex));
163
- boost::throw_exception (thread_resource_error (res2, " boost::condition_variable_any::condition_variable_any() failed in pthread_cond_init " ));
163
+ boost::throw_exception (thread_resource_error (res2, " boost::condition_variable_any::condition_variable_any() failed in detail::monotonic_pthread_cond_init " ));
164
164
}
165
165
}
166
166
~condition_variable_any ()
@@ -240,6 +240,8 @@ namespace boost
240
240
return timed_wait (m,get_system_time ()+wait_duration,pred);
241
241
}
242
242
#endif
243
+ #ifndef BOOST_THREAD_HAS_CONDATTR_SET_CLOCK_MONOTONIC
244
+
243
245
#ifdef BOOST_THREAD_USES_CHRONO
244
246
template <class lock_type ,class Duration >
245
247
cv_status
@@ -268,22 +270,6 @@ namespace boost
268
270
return Clock::now () < t ? cv_status::no_timeout : cv_status::timeout;
269
271
}
270
272
271
- template <class lock_type , class Clock , class Duration , class Predicate >
272
- bool
273
- wait_until (
274
- lock_type& lock,
275
- const chrono::time_point<Clock, Duration >& t,
276
- Predicate pred)
277
- {
278
- while (!pred ())
279
- {
280
- if (wait_until (lock, t) == cv_status::timeout)
281
- return pred ();
282
- }
283
- return true ;
284
- }
285
-
286
-
287
273
template <class lock_type , class Rep , class Period >
288
274
cv_status
289
275
wait_for (
@@ -299,35 +285,100 @@ namespace boost
299
285
300
286
}
301
287
288
+ template <class lock_type >
289
+ cv_status wait_until (
290
+ lock_type& lk,
291
+ chrono::time_point<chrono::system_clock, chrono::nanoseconds> tp)
292
+ {
293
+ using namespace chrono ;
294
+ nanoseconds d = tp.time_since_epoch ();
295
+ timespec ts = boost::detail::to_timespec (d);
296
+ if (do_wait_until (lk, ts)) return cv_status::no_timeout;
297
+ else return cv_status::timeout;
298
+ }
299
+ #endif
300
+ #else // defined BOOST_THREAD_HAS_CONDATTR_SET_CLOCK_MONOTONIC
301
+ #ifdef BOOST_THREAD_USES_CHRONO
302
302
303
- template <class lock_type , class Rep , class Period , class Predicate >
304
- bool
305
- wait_for (
306
- lock_type& lock,
307
- const chrono::duration<Rep, Period>& d,
308
- Predicate pred)
303
+ template <class lock_type , class Duration >
304
+ cv_status
305
+ wait_until (
306
+ lock_type& lock,
307
+ const chrono::time_point<chrono::steady_clock, Duration >& t)
309
308
{
310
- return wait_until (lock, chrono::steady_clock::now () + d, boost::move (pred));
309
+ using namespace chrono ;
310
+ typedef time_point<steady_clock, nanoseconds> nano_sys_tmpt;
311
+ wait_until (lock,
312
+ nano_sys_tmpt (ceil <nanoseconds>(t.time_since_epoch ())));
313
+ return steady_clock::now () < t ? cv_status::no_timeout :
314
+ cv_status::timeout;
315
+ }
316
+
317
+ template <class lock_type , class Clock , class Duration >
318
+ cv_status
319
+ wait_until (
320
+ lock_type& lock,
321
+ const chrono::time_point<Clock, Duration >& t)
322
+ {
323
+ using namespace chrono ;
324
+ steady_clock::time_point s_now = steady_clock::now ();
325
+ typename Clock::time_point c_now = Clock::now ();
326
+ wait_until (lock, s_now + ceil <nanoseconds>(t - c_now));
327
+ return Clock::now () < t ? cv_status::no_timeout : cv_status::timeout;
328
+ }
311
329
312
- // while (!pred())
313
- // {
314
- // if (wait_for(lock, d) == cv_status::timeout)
315
- // return pred();
316
- // }
317
- // return true;
330
+ template <class lock_type , class Rep , class Period >
331
+ cv_status
332
+ wait_for (
333
+ lock_type& lock,
334
+ const chrono::duration<Rep, Period>& d)
335
+ {
336
+ using namespace chrono ;
337
+ steady_clock::time_point c_now = steady_clock::now ();
338
+ wait_until (lock, c_now + ceil <nanoseconds>(d));
339
+ return steady_clock::now () - c_now < d ? cv_status::no_timeout :
340
+ cv_status::timeout;
318
341
}
319
342
320
- template <class lock_type >
321
- cv_status wait_until (
322
- lock_type& lk,
323
- chrono::time_point<chrono::system_clock, chrono::nanoseconds> tp)
343
+ inline cv_status wait_until (
344
+ unique_lock<mutex>& lk,
345
+ chrono::time_point<chrono::steady_clock, chrono::nanoseconds> tp)
324
346
{
325
347
using namespace chrono ;
326
348
nanoseconds d = tp.time_since_epoch ();
327
349
timespec ts = boost::detail::to_timespec (d);
328
350
if (do_wait_until (lk, ts)) return cv_status::no_timeout;
329
351
else return cv_status::timeout;
330
352
}
353
+
354
+ #endif
355
+ #endif // defined BOOST_THREAD_HAS_CONDATTR_SET_CLOCK_MONOTONIC
356
+
357
+ #ifdef BOOST_THREAD_USES_CHRONO
358
+ template <class lock_type , class Clock , class Duration , class Predicate >
359
+ bool
360
+ wait_until (
361
+ lock_type& lock,
362
+ const chrono::time_point<Clock, Duration >& t,
363
+ Predicate pred)
364
+ {
365
+ while (!pred ())
366
+ {
367
+ if (wait_until (lock, t) == cv_status::timeout)
368
+ return pred ();
369
+ }
370
+ return true ;
371
+ }
372
+
373
+ template <class lock_type , class Rep , class Period , class Predicate >
374
+ bool
375
+ wait_for (
376
+ lock_type& lock,
377
+ const chrono::duration<Rep, Period>& d,
378
+ Predicate pred)
379
+ {
380
+ return wait_until (lock, chrono::steady_clock::now () + d, boost::move (pred));
381
+ }
331
382
#endif
332
383
333
384
void notify_one () BOOST_NOEXCEPT
0 commit comments