summaryrefslogtreecommitdiff
path: root/daemon/container_windows.go
diff options
context:
space:
mode:
authorJohn Howard <jhoward@microsoft.com>2015-07-16 14:14:58 -0700
committerJohn Howard <jhoward@microsoft.com>2015-07-27 17:44:18 -0700
commit47c56e4353792e16f994a35ea4063768bee6590e (patch)
tree9b9366401dd5ae3a5f8cd40d4ed1002cb14babea /daemon/container_windows.go
parent33358f80e592686bb1872d9d50a4dd1e0391487f (diff)
downloaddocker-47c56e4353792e16f994a35ea4063768bee6590e.tar.gz
Windows: Factoring out unused fields
Signed-off-by: John Howard <jhoward@microsoft.com>
Diffstat (limited to 'daemon/container_windows.go')
-rw-r--r--daemon/container_windows.go22
1 files changed, 10 insertions, 12 deletions
diff --git a/daemon/container_windows.go b/daemon/container_windows.go
index ebba2e72f6..2a64f68238 100644
--- a/daemon/container_windows.go
+++ b/daemon/container_windows.go
@@ -22,18 +22,6 @@ type Container struct {
CommonContainer
// Fields below here are platform specific.
-
- // TODO Windows. Further factoring out of unused fields will be necessary.
-
- // ---- START OF TEMPORARY DECLARATION ----
- // TODO Windows. Temporarily keeping fields in to assist in compilation
- // of the daemon on Windows without affecting many other files in a single
- // PR, thus making code review significantly harder. These lines will be
- // removed in subsequent PRs.
-
- AppArmorProfile string
- // ---- END OF TEMPORARY DECLARATION ----
-
}
func killProcessDirectly(container *Container) error {
@@ -213,3 +201,13 @@ func (container *Container) CleanupStorage() error {
}
return nil
}
+
+// TODO Windows. This can be further factored out. Used in daemon.go
+func (container *Container) prepareMountPoints() error {
+ return nil
+}
+
+// TODO Windows. This can be further factored out. Used in delete.go
+func (container *Container) removeMountPoints() error {
+ return nil
+}