mirror of
https://github.com/containerd/containerd.git
synced 2026-07-20 06:23:09 +00:00
9 lines
151 B
Go
9 lines
151 B
Go
package sys
|
|
|
|
// SetOOMScore sets the oom score for the process
|
|
//
|
|
// Not implemented on Windows
|
|
func SetOOMScore(pid, score int) error {
|
|
return nil
|
|
}
|