tomcherry abandoned this revision.
tomcherry added a comment.
Herald added a subscriber: jfb.
See https://reviews.llvm.org/D65339
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D36767/new/
https://reviews.llvm.org/D36767
___
cfe-commits maili
tomcherry added a comment.
This is mostly an RFC. The underlying issue is that we cannot use timed waits
based on CLOCK_REALTIME on Android. In trying to fix that, I figured I might
as well try implementing the standard as described, though I understand that
there'd be resistance to such a re
tomcherry created this revision.
The C++ standard calls for wait_for() to use steady clock and
wait_until() to use the clock that is provided as an argument. This
is not currently done in libc++ and is not possible with the pthreads
API, however it is possible with the underlying futex system