Tizen_4.0 base
[platform/upstream/docker-engine.git] / vendor / github.com / opencontainers / runc / libcontainer / container_windows.go
1 package libcontainer
2
3 // State represents a running container's state
4 type State struct {
5         BaseState
6
7         // Platform specific fields below here
8 }
9
10 // A libcontainer container object.
11 //
12 // Each container is thread-safe within the same process. Since a container can
13 // be destroyed by a separate process, any function may return that the container
14 // was not found.
15 type Container interface {
16         BaseContainer
17
18         // Methods below here are platform specific
19
20 }