les: light client protocol and API
This commit is contained in:
committed by
Felix Lange
parent
760fd65487
commit
9f8d192991
6
vendor/github.com/aristanetworks/goarista/monotime/issue15006.s
generated
vendored
Normal file
6
vendor/github.com/aristanetworks/goarista/monotime/issue15006.s
generated
vendored
Normal file
@@ -0,0 +1,6 @@
|
||||
// Copyright (C) 2016 Arista Networks, Inc.
|
||||
// Use of this source code is governed by the Apache License 2.0
|
||||
// that can be found in the COPYING file.
|
||||
|
||||
// This file is intentionally empty.
|
||||
// It's a workaround for https://github.com/golang/go/issues/15006
|
24
vendor/github.com/aristanetworks/goarista/monotime/nanotime.go
generated
vendored
Normal file
24
vendor/github.com/aristanetworks/goarista/monotime/nanotime.go
generated
vendored
Normal file
@@ -0,0 +1,24 @@
|
||||
// Copyright (C) 2016 Arista Networks, Inc.
|
||||
// Use of this source code is governed by the Apache License 2.0
|
||||
// that can be found in the COPYING file.
|
||||
|
||||
// Package monotime provides a fast monotonic clock source.
|
||||
package monotime
|
||||
|
||||
import (
|
||||
_ "unsafe" // required to use //go:linkname
|
||||
)
|
||||
|
||||
//go:noescape
|
||||
//go:linkname nanotime runtime.nanotime
|
||||
func nanotime() int64
|
||||
|
||||
// Now returns the current time in nanoseconds from a monotonic clock.
|
||||
// The time returned is based on some arbitrary platform-specific point in the
|
||||
// past. The time returned is guaranteed to increase monotonically at a
|
||||
// constant rate, unlike time.Now() from the Go standard library, which may
|
||||
// slow down, speed up, jump forward or backward, due to NTP activity or leap
|
||||
// seconds.
|
||||
func Now() uint64 {
|
||||
return uint64(nanotime())
|
||||
}
|
Reference in New Issue
Block a user