Re: [PATCH v5 0/8] std::future::wait_* and std::condition_variable improvements

2020-09-11 Thread Jonathan Wakely via Gcc-patches
On 29/05/20 07:17 +0100, Mike Crowe via Libstdc++ wrote: This series ensures that the std::future::wait_* functions use std::chrono::steady_clock when required, introduces std::chrono::__detail::ceil to make that easier to do, and then makes use of that function to simplify and improve the fix fo

Re: [PATCH v5 0/8] std::future::wait_* and std::condition_variable improvements

2020-07-17 Thread Jonathan Wakely via Gcc-patches
On 17/07/20 09:39 +0100, Mike Crowe via Libstdc++ wrote: On Friday 29 May 2020 at 07:17:26 +0100, Mike Crowe wrote: This series ensures that the std::future::wait_* functions use std::chrono::steady_clock when required, introduces std::chrono::__detail::ceil to make that easier to do, and then m

Re: [PATCH v5 0/8] std::future::wait_* and std::condition_variable improvements

2020-07-17 Thread Mike Crowe via Gcc-patches
On Friday 29 May 2020 at 07:17:26 +0100, Mike Crowe wrote: > This series ensures that the std::future::wait_* functions use > std::chrono::steady_clock when required, introduces > std::chrono::__detail::ceil to make that easier to do, and then makes > use of that function to simplify and improve th

[PATCH v5 0/8] std::future::wait_* and std::condition_variable improvements

2020-05-28 Thread Mike Crowe via Gcc-patches
This series ensures that the std::future::wait_* functions use std::chrono::steady_clock when required, introduces std::chrono::__detail::ceil to make that easier to do, and then makes use of that function to simplify and improve the fix for PR68519 in std::condition_variable. v1 of this series wa