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:
@@ -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": [
|
||||
|
||||
@@ -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)
|
||||
|
||||
Reference in New Issue
Block a user