mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
b42ac8d370
The value comes from `C.sysconf(C._SC_CLK_TCK)`, and on Linux it's a constant which is safe to be hard coded. See for example in the Musl libc source code https://git.musl-libc.org/cgit/musl/tree/src/conf/sysconf.c#n29 This removes the github.com/opencontainers/runc/libcontainer/system dependency from this package. Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
12 lines
399 B
Go
12 lines
399 B
Go
package stats // import "github.com/docker/docker/daemon/stats"
|
|
|
|
// getSystemCPUUsage returns the host system's cpu usage in
|
|
// nanoseconds. An error is returned if the format of the underlying
|
|
// file does not match. This is a no-op on Windows.
|
|
func (s *Collector) getSystemCPUUsage() (uint64, error) {
|
|
return 0, nil
|
|
}
|
|
|
|
func (s *Collector) getNumberOnlineCPUs() (uint32, error) {
|
|
return 0, nil
|
|
}
|