blob: 45b54efabb165c462a34366c42033b0d46f339c5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
// +build !linux
package libpod
import (
"context"
spec "github.com/opencontainers/runtime-spec/specs-go"
)
func (c *Container) mountSHM(shmOptions string) error {
return ErrNotImplemented
}
func (c *Container) unmountSHM(mount string) error {
return ErrNotImplemented
}
func (c *Container) prepare() (err error) {
return ErrNotImplemented
}
func (c *Container) cleanupNetwork() error {
return ErrNotImplemented
}
func (c *Container) generateSpec(ctx context.Context) (*spec.Spec, error) {
return nil, ErrNotImplemented
}
|