Changes between Initial Version and Version 1 of Ticket #8323, comment 6
- Timestamp:
- Mar 30, 2013, 3:03:40 PM (10 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #8323, comment 6
initial v1 27 27 do { 28 28 typename Clock::duration d = ceil<nanoseconds>(t-Clock::now()); 29 if (d < Clock::duration::zero()) return false; // in case the Clock::time_point t is already reached29 if (d <= Clock::duration::zero()) return false; // in case the Clock::time_point t is already reached 30 30 joined = try_join_until(s_now + d); 31 31 } while (! joined);