Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
N
neoppod
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Levin Zimmermann
neoppod
Commits
13d5edde
Commit
13d5edde
authored
Feb 22, 2021
by
Kirill Smelkov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
.
parent
20b124bb
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
4 deletions
+6
-4
go/neo/internal/xtime/xtime.go
go/neo/internal/xtime/xtime.go
+6
-4
No files found.
go/neo/internal/xtime/xtime.go
View file @
13d5edde
...
...
@@ -24,13 +24,15 @@ import (
"time"
)
// Mono returns monotonically increasing time.
// It uses monotonic time for measurements and is robust to OS clock adjustments
// Mono returns time passed since program start.
//
// It uses monotonic time for measurements and is robust to OS clock adjustments.
//
// XXX better return time.Duration?
func
Mono
()
float64
{
// time.Sub uses monotonic clock readings for the difference
return
time
.
Now
()
.
Sub
(
epoch
)
.
Seconds
()
// FIXME py returns it since epoch, not since start
return
time
.
Now
()
.
Sub
(
tstart
)
.
Seconds
()
}
var
epoch
time
.
Time
// zero value is epoch
var
tstart
time
.
Time
=
time
.
Now
()
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment