mirror of
https://github.com/opencontainers/runc.git
synced 2026-07-12 09:46:25 +08:00
eafabef56d
Docker-DCO-1.1-Signed-off-by: Bernerd Schaefer <bj.schaefer@gmail.com> (github: bernerdschaefer)
9 lines
152 B
Go
9 lines
152 B
Go
// +build !cgo
|
|
|
|
package system
|
|
|
|
func GetClockTicks() int {
|
|
// TODO figure out a better alternative for platforms where we're missing cgo
|
|
return 100
|
|
}
|