We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
For jruby/jruby#4393 we added gettimeofday to jnr-posix. Unfortunately, it is not supported on Windows (jruby/jruby#4565).
I'm doing a workaround that uses System.currentTimeMillis on Windows. This won't preserve microsecond accuracy, but it will work.
We need to do the additional logic to make an appropriate gettimeofday on Windows. I found at least one SO post describing how: http://stackoverflow.com/questions/1676036/what-should-i-use-to-replace-gettimeofday-on-windows
The text was updated successfully, but these errors were encountered:
Use System.currentTimeMillis for now for gettimeofday. See #98.
f3f5ce8
No branches or pull requests
For jruby/jruby#4393 we added gettimeofday to jnr-posix. Unfortunately, it is not supported on Windows (jruby/jruby#4565).
I'm doing a workaround that uses System.currentTimeMillis on Windows. This won't preserve microsecond accuracy, but it will work.
We need to do the additional logic to make an appropriate gettimeofday on Windows. I found at least one SO post describing how: http://stackoverflow.com/questions/1676036/what-should-i-use-to-replace-gettimeofday-on-windows
The text was updated successfully, but these errors were encountered: