libpod: make removePodCgroup linux specific

Signed-off-by: Giuseppe Scrivano <gscrivan@redhat.com>
This commit is contained in:
Giuseppe Scrivano
2023-11-02 12:47:55 +01:00
parent e4f1c87ea0
commit 06a07c98e7
3 changed files with 64 additions and 64 deletions

View File

@ -10,3 +10,7 @@ import (
func (r *Runtime) platformMakePod(pod *Pod, resourceLimits *spec.LinuxResources) (string, error) {
return "", nil
}
func (p *Pod) removePodCgroup() error {
return nil
}