mirror of
				https://github.com/containers/podman.git
				synced 2025-10-31 10:00:01 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			13 lines
		
	
	
		
			229 B
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			13 lines
		
	
	
		
			229 B
		
	
	
	
		
			Go
		
	
	
	
	
	
| //go:build darwin
 | |
| // +build darwin
 | |
| 
 | |
| package util
 | |
| 
 | |
| import (
 | |
| 	"github.com/pkg/errors"
 | |
| )
 | |
| 
 | |
| func GetContainerPidInformationDescriptors() ([]string, error) {
 | |
| 	return []string{}, errors.New("this function is not supported on darwin")
 | |
| }
 | 
