
This updates containerd to use the latest versions of cgroups, fifo, console, and go-runc from the containerd org. Signed-off-by: Michael Crosby <crosbymichael@gmail.com>
11 lines
128 B
Go
11 lines
128 B
Go
package cgroups
|
|
|
|
/*
|
|
#include <unistd.h>
|
|
*/
|
|
import "C"
|
|
|
|
func getClockTicks() uint64 {
|
|
return uint64(C.sysconf(C._SC_CLK_TCK))
|
|
}
|