diff mbox series

Use steady_clock to implement condition_variable::wait_for with predicate

Message ID 20180912143527.18621-1-mac@mcrowe.com
State New
Headers show
Series Use steady_clock to implement condition_variable::wait_for with predicate | expand

Commit Message

Mike Crowe Sept. 12, 2018, 2:35 p.m. UTC
In r263225 (d2e378182a12d68fe5caeffae681252662a2fe7b), I fixed
condition_variable::wait_for to use std::chrono::steady_clock for the wait.
Unfortunately, I failed to spot that the same fix is required for the
wait_for variant that takes a predicate too.

Reported-by: Tom Wood <tom.wood@redembedded.com>
---
 libstdc++-v3/include/std/condition_variable | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Comments

Jonathan Wakely Sept. 25, 2018, 2:58 p.m. UTC | #1
On 12/09/18 15:35 +0100, Mike Crowe wrote:
>In r263225 (d2e378182a12d68fe5caeffae681252662a2fe7b), I fixed
>condition_variable::wait_for to use std::chrono::steady_clock for the wait.
>Unfortunately, I failed to spot that the same fix is required for the
>wait_for variant that takes a predicate too.

Thanks, I'm going to commit this slightly tweaked patch (keeping the
line shorter than 80 columns).
commit 355442478e2876845564d502d83af4c59f601ec9
Author: Jonathan Wakely <jwakely@redhat.com>
Date:   Tue Sep 25 15:10:56 2018 +0100

    Use steady_clock to implement condition_variable::wait_for with predicate
    
    In r263225 (d2e378182a12d68fe5caeffae681252662a2fe7b), I fixed
    condition_variable::wait_for to use std::chrono::steady_clock for the wait.
    Unfortunately, I failed to spot that the same fix is required for the
    wait_for variant that takes a predicate too.
    
    2018-09-25  Mike Crowe  <mac@mcrowe.com>
    
            * include/std/condition_variable (condition_variable::wait_for): Use
            steady clock in overload that uses a predicate.

diff --git a/libstdc++-v3/include/std/condition_variable b/libstdc++-v3/include/std/condition_variable
index 1f84ea324eb..84173012b5b 100644
--- a/libstdc++-v3/include/std/condition_variable
+++ b/libstdc++-v3/include/std/condition_variable
@@ -158,11 +158,12 @@ _GLIBCXX_BEGIN_NAMESPACE_VERSION
 	       const chrono::duration<_Rep, _Period>& __rtime,
 	       _Predicate __p)
       {
-	using __dur = typename __clock_t::duration;
+	using __dur = typename __steady_clock_t::duration;
 	auto __reltime = chrono::duration_cast<__dur>(__rtime);
 	if (__reltime < __rtime)
 	  ++__reltime;
-	return wait_until(__lock, __clock_t::now() + __reltime, std::move(__p));
+	return wait_until(__lock, __steady_clock_t::now() + __reltime,
+			  std::move(__p));
       }
 
     native_handle_type
diff mbox series

Patch

diff --git a/libstdc++-v3/include/std/condition_variable b/libstdc++-v3/include/std/condition_variable
index 1f84ea324eb..24b96e7c295 100644
--- a/libstdc++-v3/include/std/condition_variable
+++ b/libstdc++-v3/include/std/condition_variable
@@ -158,11 +158,11 @@  _GLIBCXX_BEGIN_NAMESPACE_VERSION
 	       const chrono::duration<_Rep, _Period>& __rtime,
 	       _Predicate __p)
       {
-	using __dur = typename __clock_t::duration;
+	using __dur = typename __steady_clock_t::duration;
 	auto __reltime = chrono::duration_cast<__dur>(__rtime);
 	if (__reltime < __rtime)
 	  ++__reltime;
-	return wait_until(__lock, __clock_t::now() + __reltime, std::move(__p));
+	return wait_until(__lock, __steady_clock_t::now() + __reltime, std::move(__p));
       }
 
     native_handle_type