mirror of https://github.com/containers/podman.git
				
				
				
			
		
			
				
	
	
		
			29 lines
		
	
	
		
			527 B
		
	
	
	
		
			Go
		
	
	
	
			
		
		
	
	
			29 lines
		
	
	
		
			527 B
		
	
	
	
		
			Go
		
	
	
	
| // +build !linux
 | |
| 
 | |
| package libpod
 | |
| 
 | |
| import (
 | |
| 	"os"
 | |
| 	"os/exec"
 | |
| )
 | |
| 
 | |
| func (r *OCIRuntime) moveConmonToCgroup(ctr *Container, cgroupParent string, cmd *exec.Cmd) error {
 | |
| 	return ErrOSNotSupported
 | |
| }
 | |
| 
 | |
| func newPipe() (parent *os.File, child *os.File, err error) {
 | |
| 	return nil, nil, ErrNotImplemented
 | |
| }
 | |
| 
 | |
| func (r *OCIRuntime) createContainer(ctr *Container, cgroupParent string) (err error) {
 | |
| 	return ErrNotImplemented
 | |
| }
 | |
| 
 | |
| func (r *OCIRuntime) pathPackage() string {
 | |
| 	return ""
 | |
| }
 | |
| 
 | |
| func (r *OCIRuntime) conmonPackage() string {
 | |
| 	return ""
 | |
| }
 |