github.com/zhuohuang-hust/src-cbuild@v0.0.0-20230105071821-c7aab3e7c840/mergeCode/runc/libcontainer/container_solaris.go (about) 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 }