summaryrefslogtreecommitdiff
path: root/libpod/container_internal_unsupported.go
blob: eed0449a901ada290b95c1aa4326a40dbe267646 (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
30
31
32
33
34
35
36
37
// +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
}

func (c *Container) checkpoint(ctx context.Context, keep bool) error {
	return ErrNotImplemented
}

func (c *Container) restore(ctx context.Context, keep bool) error {
	return ErrNotImplemented
}