Integrate new structure into docker's native driver

This duplicates some of the Exec code but I think it it worth it because
the native driver is more straight forward and does not have the
complexity have handling the type issues for now.
Docker-DCO-1.1-Signed-off-by: Michael Crosby <michael@crosbymichael.com> (github: crosbymichael)
This commit is contained in:
Michael Crosby 2014-04-30 18:20:01 -07:00
parent 8cd88f75fa
commit cc33cd3410
4 changed files with 46 additions and 23 deletions

View file

@ -3,6 +3,7 @@
package system
import (
"os"
"os/exec"
)
@ -23,3 +24,7 @@ func GetClockTicks() int {
// just return 100
return 100
}
func CreateMasterAndConsole() (*os.File, string, error) {
return nil, "", ErrNotSupportedPlatform
}