summaryrefslogtreecommitdiff
path: root/libpod/container.go
diff options
context:
space:
mode:
authorW. Trevor King <wking@tremily.us>2018-06-29 14:18:30 -0700
committerAtomic Bot <atomic-devel@projectatomic.io>2018-07-05 12:47:10 +0000
commitbaa42fd4bd295be9232cde8e528841d3e8fd7d35 (patch)
tree51a695a7a1cc0a3611cc29d558d9097a2b863d31 /libpod/container.go
parent49fe03c626dc10781f2d3241a489c95515af9db4 (diff)
downloadpodman-baa42fd4bd295be9232cde8e528841d3e8fd7d35.tar.gz
podman-baa42fd4bd295be9232cde8e528841d3e8fd7d35.tar.bz2
podman-baa42fd4bd295be9232cde8e528841d3e8fd7d35.zip
libpod/container: Replace containerState* with containerPlatformState
This way we don't need to stub in structures for other OSes (e.g. the Darwin stub in a Linux-only file). Matthew was concerned about errors unmarshalling, say, a Linux state object on a Windows box [1], but we can address that in checks when loading the database [2]. [1]: https://github.com/projectatomic/libpod/pull/1015#discussion_r198649043 [2]: https://github.com/projectatomic/libpod/pull/1015#discussion_r198802956 Signed-off-by: W. Trevor King <wking@tremily.us> Closes: #1033 Approved by: mheon
Diffstat (limited to 'libpod/container.go')
-rw-r--r--libpod/container.go8
1 files changed, 2 insertions, 6 deletions
diff --git a/libpod/container.go b/libpod/container.go
index 2931aee30..3708ee287 100644
--- a/libpod/container.go
+++ b/libpod/container.go
@@ -173,12 +173,8 @@ type containerState struct {
// and not delegated to the OCI runtime.
ExtensionStageHooks map[string][]spec.Hook `json:"extensionStageHooks,omitempty"`
- // Special container state attributes for Linux
- containerStateLinux
- // Special container state attributes for Windows
- containerStateWindows
- // Special container state attributes for Darwin
- containerStateDarwin
+ // containerPlatformState holds platform-specific container state.
+ containerPlatformState
}
// ExecSession contains information on an active exec session