53 lines
1.0 KiB
Go
53 lines
1.0 KiB
Go
// +build !linux
|
|
|
|
package executor
|
|
|
|
import (
|
|
"os"
|
|
|
|
cstructs "github.com/hashicorp/nomad/client/driver/structs"
|
|
|
|
"github.com/mitchellh/go-ps"
|
|
cgroupConfig "github.com/opencontainers/runc/libcontainer/configs"
|
|
)
|
|
|
|
func (e *UniversalExecutor) configureChroot() error {
|
|
return nil
|
|
}
|
|
|
|
func DestroyCgroup(groups *cgroupConfig.Cgroup, paths map[string]string, executorPid int) error {
|
|
return nil
|
|
}
|
|
|
|
func (e *UniversalExecutor) removeChrootMounts() error {
|
|
return nil
|
|
}
|
|
|
|
func (e *UniversalExecutor) runAs(userid string) error {
|
|
return nil
|
|
}
|
|
|
|
func (e *UniversalExecutor) applyLimits(pid int) error {
|
|
return nil
|
|
}
|
|
|
|
func (e *UniversalExecutor) configureIsolation() error {
|
|
return nil
|
|
}
|
|
|
|
func (e *UniversalExecutor) Stats() (*cstructs.TaskResourceUsage, error) {
|
|
pidStats, err := e.pidStats()
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return e.aggregatedResourceUsage(pidStats), nil
|
|
}
|
|
|
|
func (e *UniversalExecutor) getAllPids() ([]*nomadPid, error) {
|
|
allProcesses, err := ps.Processes()
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return e.scanPids(os.Getpid(), allProcesses)
|
|
}
|