summaryrefslogtreecommitdiff
path: root/libcontainerd/supervisor/remote_daemon_options_linux.go
blob: 14511dbf933130f66fdc7829f9830b9ec811070c (plain)
1
2
3
4
5
6
7
8
9
package supervisor // import "github.com/docker/docker/libcontainerd/supervisor"

// WithOOMScore defines the oom_score_adj to set for the containerd process.
func WithOOMScore(score int) DaemonOpt {
	return func(r *remote) error {
		r.OOMScore = score
		return nil
	}
}