Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update description of cpu_affinity_final #192

Merged
merged 1 commit into from
Sep 6, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion src/runtime/process.rs
Original file line number Diff line number Diff line change
Expand Up @@ -592,7 +592,8 @@ pub struct ExecCPUAffinity {
)]
/// cpu_affinity_final is a list of CPUs the process will be run on after the transition
/// to container's cgroup. The format is the same as for `initial`. If omitted or empty,
/// the container's default CPU affinity, as defined by cpu.cpus property, is used.
/// runtime SHOULD NOT change process' CPU affinity after the process is moved to
/// container's cgroup, and the final affinity is determined by the Linux kernel.
cpu_affinity_final: Option<String>,
}

Expand Down
Loading