Re: [PATCH] libstdc++: Fix future.wait_until when given a negative time_point

2025-01-08 Thread Jonathan Wakely
On Wed, 18 Dec 2024 at 00:35, Jonathan Wakely wrote: > > On Tue, 17 Dec 2024 at 19:38, Jonathan Wakely wrote: > > > > On Wed, 31 Jul 2024 at 22:39, Jonathan Wakely wrote: > > > > > > On Wed, 24 Jul 2024 at 14:14, William Tsai > > > wrote: > > > > > > > > The template `future.wait_until` will e

Re: [PATCH] libstdc++: Fix future.wait_until when given a negative time_point

2024-12-17 Thread Jonathan Wakely
On Tue, 17 Dec 2024 at 19:38, Jonathan Wakely wrote: > > On Wed, 31 Jul 2024 at 22:39, Jonathan Wakely wrote: > > > > On Wed, 24 Jul 2024 at 14:14, William Tsai wrote: > > > > > > The template `future.wait_until` will expand to > > > `_M_load_and_test_until_impl` where it will call > > > `_M_loa

Re: [PATCH] libstdc++: Fix future.wait_until when given a negative time_point

2024-12-17 Thread Jonathan Wakely
On Wed, 31 Jul 2024 at 22:39, Jonathan Wakely wrote: > > On Wed, 24 Jul 2024 at 14:14, William Tsai wrote: > > > > The template `future.wait_until` will expand to > > `_M_load_and_test_until_impl` where it will call > > `_M_load_and_test_until*` with given time_point casted into second and > > na

Re: [PATCH] libstdc++: Fix future.wait_until when given a negative time_point

2024-07-31 Thread Jonathan Wakely
On Wed, 24 Jul 2024 at 14:14, William Tsai wrote: > > The template `future.wait_until` will expand to > `_M_load_and_test_until_impl` where it will call > `_M_load_and_test_until*` with given time_point casted into second and > nanosecond. The callee expects the caller to provide the values > corr