2016-07-10 06:01:14 +00:00
|
|
|
// +build darwin dragonfly freebsd netbsd openbsd solaris windows
|
|
|
|
|
|
|
|
package executor
|
|
|
|
|
|
|
|
import (
|
|
|
|
dstructs "github.com/hashicorp/nomad/client/driver/structs"
|
|
|
|
)
|
|
|
|
|
|
|
|
type resourceContainer struct {
|
|
|
|
}
|
|
|
|
|
2016-07-10 06:45:33 +00:00
|
|
|
func clientCleanup(ic *dstructs.IsolationConfig, pid int) error {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2016-07-10 06:25:33 +00:00
|
|
|
func (rc *resourceContainer) executorCleanup() error {
|
2016-07-10 06:01:14 +00:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (rc *resourceContainer) getIsolationConfig() *dstructs.IsolationConfig {
|
|
|
|
return nil
|
|
|
|
}
|