mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
055c5dd496
Signed-off-by: Lei Jitang <leijitang@huawei.com>
22 lines
569 B
Go
22 lines
569 B
Go
// +build !linux,!windows,!freebsd
|
|
|
|
package osl
|
|
|
|
import "errors"
|
|
|
|
var (
|
|
// ErrNotImplemented is for platforms which don't implement sandbox
|
|
ErrNotImplemented = errors.New("not implemented")
|
|
)
|
|
|
|
// NewSandbox provides a new sandbox instance created in an os specific way
|
|
// provided a key which uniquely identifies the sandbox
|
|
func NewSandbox(key string, osCreate, isRestore bool) (Sandbox, error) {
|
|
return nil, ErrNotImplemented
|
|
}
|
|
|
|
// GenerateKey generates a sandbox key based on the passed
|
|
// container id.
|
|
func GenerateKey(containerID string) string {
|
|
return ""
|
|
}
|