github.com/iqoqo/nomad@v0.11.3-0.20200911112621-d7021c74d101/drivers/shared/executor/resource_container_default.go (about)

     1  // +build darwin dragonfly freebsd netbsd openbsd solaris windows
     2  
     3  package executor
     4  
     5  // resourceContainerContext is a platform-specific struct for managing a
     6  // resource container.
     7  type resourceContainerContext struct {
     8  }
     9  
    10  func (rc *resourceContainerContext) executorCleanup() error {
    11  	return nil
    12  }