1
0
mirror of https://github.com/opencontainers/runtime-spec.git synced 2026-02-06 12:45:15 +01:00

config-linux: update type of LinuxCPU.Idle to *int64

and add cpu.idle to example in config.md

Signed-off-by: wineway <wangyuweihx@gmail.com>
This commit is contained in:
wineway
2022-04-24 17:20:32 +08:00
parent 2cf6663ca2
commit fc985aa06b
2 changed files with 2 additions and 1 deletions

View File

@@ -840,6 +840,7 @@ Here is a full example `config.json` for reference.
"realtimeRuntime": 950000,
"realtimePeriod": 1000000,
"cpus": "2-3",
"idle": 1,
"mems": "0-7"
},
"devices": [

View File

@@ -331,7 +331,7 @@ type LinuxCPU struct {
// List of memory nodes in the cpuset. Default is to use any available memory node.
Mems string `json:"mems,omitempty"`
// cgroups are configured with minimum weight, 0: default behavior, 1: SCHED_IDLE.
Idle int64 `json:"idle"`
Idle *int64 `json:"idle,omitempty"`
}
// LinuxPids for Linux cgroup 'pids' resource management (Linux 4.3)