mirror of https://github.com/containers/podman.git
				
				
				
			
		
			
				
	
	
		
			22 lines
		
	
	
		
			498 B
		
	
	
	
		
			Go
		
	
	
	
			
		
		
	
	
			22 lines
		
	
	
		
			498 B
		
	
	
	
		
			Go
		
	
	
	
| // +build windows
 | |
| 
 | |
| package utils
 | |
| 
 | |
| import "github.com/pkg/errors"
 | |
| 
 | |
| func RunUnderSystemdScope(pid int, slice string, unitName string) error {
 | |
| 	return errors.New("not implemented for windows")
 | |
| }
 | |
| 
 | |
| func MoveUnderCgroupSubtree(subtree string) error {
 | |
| 	return errors.New("not implemented for windows")
 | |
| }
 | |
| 
 | |
| func GetOwnCgroup() (string, error) {
 | |
| 	return "", errors.New("not implemented for windows")
 | |
| }
 | |
| 
 | |
| func GetCgroupProcess(pid int) (string, error) {
 | |
| 	return "", errors.New("not implemented for windows")
 | |
| }
 |