mirror of
https://github.com/criyle/go-sandbox.git
synced 2025-09-26 23:19:11 +08:00
15 lines
347 B
Go
15 lines
347 B
Go
// Package cgroup provides builder to create cgroup
|
|
// under systemd defined mount path (i.e.,sys/fs/cgroup) including v1 and
|
|
// v2 implementation.
|
|
//
|
|
// Available cgroup controller:
|
|
//
|
|
// cpu
|
|
// cpuset
|
|
// cpuacct
|
|
// memory
|
|
// pids
|
|
//
|
|
// Current not available: devices, freezer, net_cls, blkio, perf_event, net_prio, huge_tlb, rdma
|
|
package cgroup
|