Signed-off-by: John Howard <jhoward@microsoft.com> Upstream-commit: fe8cfc5b39ffca9f15bc5f005164aa31754ee991 Component: engine
25 lines
404 B
Go
25 lines
404 B
Go
// +build windows
|
|
|
|
package windows
|
|
|
|
import "github.com/docker/docker/daemon/execdriver"
|
|
|
|
type info struct {
|
|
ID string
|
|
driver *Driver
|
|
}
|
|
|
|
// Info implements the exec driver Driver interface.
|
|
func (d *Driver) Info(id string) execdriver.Info {
|
|
return &info{
|
|
ID: id,
|
|
driver: d,
|
|
}
|
|
}
|
|
|
|
func (i *info) IsRunning() bool {
|
|
var running bool
|
|
running = true // TODO Need an HCS API
|
|
return running
|
|
}
|