Tizen_4.0 base
[platform/upstream/docker-engine.git] / vendor / github.com / opencontainers / runc / libcontainer / console_freebsd.go
1 // +build freebsd
2
3 package libcontainer
4
5 import (
6         "errors"
7 )
8
9 // newConsole returns an initialized console that can be used within a container by copying bytes
10 // from the master side to the slave that is attached as the tty for the container's init process.
11 func newConsole() (Console, error) {
12         return nil, errors.New("libcontainer console is not supported on FreeBSD")
13 }