mirror of
				https://github.com/containers/podman.git
				synced 2025-11-01 02:42:11 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			14 lines
		
	
	
		
			323 B
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			14 lines
		
	
	
		
			323 B
		
	
	
	
		
			Go
		
	
	
	
	
	
| //go:build !remote && !(linux && cgo) && !freebsd
 | |
| 
 | |
| package libpod
 | |
| 
 | |
| import (
 | |
| 	"errors"
 | |
| )
 | |
| 
 | |
| // Top gathers statistics about the running processes in a container. It returns a
 | |
| // []string for output
 | |
| func (c *Container) Top(descriptors []string) ([]string, error) {
 | |
| 	return nil, errors.New("not implemented (*Container) Top")
 | |
| }
 | 
