From 5c30c4379af20b3cbd2d20cc9f0ccb6f04ac63ab Mon Sep 17 00:00:00 2001 From: Michael Crosby Date: Fri, 17 Jan 2014 16:46:39 -0800 Subject: [PATCH] Add todos for driver changes Docker-DCO-1.1-Signed-off-by: Michael Crosby (github: crosbymichael) --- execdriver/driver.go | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/execdriver/driver.go b/execdriver/driver.go index 7fc066ee29..5f3d25a566 100644 --- a/execdriver/driver.go +++ b/execdriver/driver.go @@ -62,7 +62,7 @@ type Info interface { type Driver interface { Run(c *Process, startCallback StartCallback) (int, error) // Run executes the process and blocks until the process exits and returns the exit code Kill(c *Process, sig int) error - Wait(id string) error // Wait on an out of process...process - lxc ghosts + Wait(id string) error // Wait on an out of process...process - lxc ghosts TODO: Rename to reattach, reconnect Name() string // Driver name Info(id string) Info // "temporary" hack (until we move state from core to plugins) } @@ -77,6 +77,7 @@ type Network struct { } // Process wrapps an os/exec.Cmd to add more metadata +// TODO: Rename to Command type Process struct { exec.Cmd