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
What steps will reproduce the problem?
1. Print time.Seconds()
2. Print time.Nanoseconds() / 1e9
3. Compare the results
What is the expected output?
They should be identical.
What do you see instead?
There is a huge difference, several seconds.
What is your $GOOS? $GOARCH?
GOOS = windows
GOARCH = 386
Which revision are you using? (hg identify)
release.2010-08-11
Please provide any additional information below.
The problem originates from the Gettimeofday() function in syscall/syscall_windows.go
(line 396).