You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Should have some equivalent to System.currentTimeMillis(). In other words, "get me an integer that represents 'now' which I can stash away and compare to later." Wanted this for Dylox's clock() implementation.
The text was updated successfully, but these errors were encountered:
In time@0.1.1 I pushed some changes I'd made a while back to get basic macOS support working. I simply used CLOCK_MONOTONIC instead of the _RAW version, however I think the right fix is to use CLOCK_UPTIME_RAW based on this post: https://reviews.llvm.org/D27429
While I'm here... Java now has System.nanoTime() as well, and we might want something like that in addition to (or instead of) something like System.currentTimeMillis().
Should have some equivalent to
System.currentTimeMillis()
. In other words, "get me an integer that represents 'now' which I can stash away and compare to later." Wanted this for Dylox'sclock()
implementation.The text was updated successfully, but these errors were encountered: